skip to Main Content

flutter make get request before displaying app

I have a pretty simple problem. I have a code snippet that looks like this: class home_page extends StatefulWidget { @override State<StatefulWidget> createState() => Main(); } class Main extends State<home_page> { void initState() { super.initState(); } @override Widget build(BuildContext context)…

VIEW QUESTION
Back To Top
Search