Relative Content

Tag Archive for flutterflutter-dependencies

FlutterLoader is not defined for web

I have problem
I dont know why but my web app is build correctly but when I use chrome for my web then I have white page and in console I have error: FlutterLoader is not defined.

Get names of devices in network

I’m currently working with Flutter and would like to build an app that does a simple network scan and lists all devices.

Flutter Page Reload

class Graficos extends StatefulWidget { final String id; final List<int>? myList; const Graficos({super.key, required this.id, this.myList}); @override State<Graficos> createState() => _GraficosState(); } class _GraficosState extends State<Graficos> { late List<int>? _myList; String nome = “”; List<String> ListaNomes = []; List<String> ListaPontos7Dias = []; List<String> ListaPontos30Dias = []; List<String> ListaPontos365Dias = []; late GoRouterState _state; late GlobalVariables […]