Answers for "flutter convex bottom bar"

0

flutter convex bottom bar

//tab view with the bottom navigtion using convex appbar
    body: TabBarView(
          children: [
            Text('Home'),
            Text('Discovery'),
            Text('Add'),
            Text('Message'),
            Text('Profile'),
          ]
              .map((i) => Center(
                    child: Container(
                      width: double.infinity,
                      height: double.infinity,
                      color: Colors.black,
                      child: Card(

                        child: Column(
                          mainAxisSize: MainAxisSize.min,
                          children: <Widget>[
                            ListTile(
                              leading: Icon(Icons.album),
                              title: Text('$i'),
                              subtitle: Text(
                                  'Music by Julie Gable. Lyrics by Sidney Stein.'),
                            ),
                            Row(
                              mainAxisAlignment: MainAxisAlignment.end,
                              children: <Widget>[
                                TextButton(
                                  child: const Text('BUY TICKETS'),
                                  onPressed: () {/* ... */},
                                ),
                                const SizedBox(width: 8),
                                TextButton(
                                  child: const Text('LISTEN'),
                                  onPressed: () {/* ... */},
                                ),
                                const SizedBox(width: 8),
                              ],
                            ),
                          ],
                        ),
                      ),
                    ),
                  ))
              .toList(growable: false),
        ),
 
 
 
 bottomNavigationBar: ConvexAppBar(
          backgroundColor: Colors.black,
          activeColor: Colors.black,
          top: -40,
          curveSize: 100,
          items: [
            TabItem(
                icon: new Icon(Icons.home, color: Colors.white), title: 'Home'),
            TabItem(
                icon: new Icon(Icons.map, color: Colors.white),
                title: 'Discovery'),
            TabItem(
                icon: new Icon(Icons.add, color: Colors.white), title: 'Add'),
            TabItem(
                icon: new Icon(Icons.message, color: Colors.white),
                title: 'Message'),
            TabItem(
                icon: new Icon(Icons.people, color: Colors.white),
                title: 'Profile'),
          ], //optional, default as 0

          /* some config*/
        ),
      ),
Posted by: Guest on July-27-2021

Code answers related to "flutter convex bottom bar"

Browse Popular Code Answers by Language