Skip to content

Instantly share code, notes, and snippets.

View EuHigorBarbosa's full-sized avatar

HIGOR GUSTAVO BARBOSA DA SILVA EuHigorBarbosa

  • João Pinheiro - Minas Gerais
View GitHub Profile
@EuHigorBarbosa
EuHigorBarbosa / main.dart
Last active December 1, 2022 10:42
Stream in several pages
import 'package:flutter/material.dart';
import 'dart:async';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);