Showing database in flutter

Issue I have a problem with showing a database in my app. Here’s the code. SingleChildScrollView( child: Center( child: Padding( padding: const EdgeInsets.all(8.0), child: Column( mainAxisSize: MainAxisSize.min, children: <Widget>[ StreamBuilder( stream: myRef.orderByKey().limitToFirst(10).onValue, builder: ((context, snapshot) { if (snapshot.hasData) { final

Continue reading