Beginning FlutterFire

Aug 30 2022 · Dart 2.16, Flutter 3.0, Visual Studio Code 1.69

Part 3: Read & Write Data with the Cloud Firestore

12. Create the Activities Screen

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 11. Insert & Retrieve Data from Firestore Next episode: 13. Create the Activity Detail Screen

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

Now you will create the screen that contains the list of activities that users will see when they open the app.

  late Future<List<Activity>> activities; 
  late FirebaseHelper helper = FirebaseHelper(); 
body: FutureBuilder( 
        future: activities, 
        builder: (context, snapshot) { 
          final List<Activity> activityList = 
              snapshot.hasData ? snapshot.data as List<Activity> 
               : []; 
return ListView.builder( 
  itemCount: activityList.length, 
  itemBuilder: (context, position) { 
    return ListTile( 
      title: Text(activity.description), 
      subtitle: Text( 
          'Date: ${activity.day} - From ${activity.beginTime}' + 
              ' to  ${activity.endTime}'),