Firebase – Why doesn't FutureBuilder return the Widget?
I don't get why this FutureBuilder doesn't return the Widget. "TEST" is printed, so the ConnectionState is done. "Null" is not be printed, but i think it doesn't matter. So what is the problem? return FutureBuilder( future: getData(), builder: (context,…