Flutter Bottom Navigation Bar Four Items

[Solved] Flutter Bottom Navigation Bar Four Items | Dart - Code Explorer | yomemimo.com
Question : flutter bottom navigation bar

Answered by : luqman-tuke

import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); static const String _title = 'Flutter Code Sample'; @override Widget build(BuildContext context) { return const MaterialApp( title: _title, home: MyStatefulWidget(), ); }
}
class MyStatefulWidget extends StatefulWidget { const MyStatefulWidget({Key? key}) : super(key: key); @override State<MyStatefulWidget> createState() => _MyStatefulWidgetState();
}
class _MyStatefulWidgetState extends State<MyStatefulWidget> { int _selectedIndex = 0; static const TextStyle optionStyle = TextStyle(fontSize: 30, fontWeight: FontWeight.bold); static const List<Widget> _widgetOptions = <Widget>[ Text( 'Index 0: Home', style: optionStyle, ), Text( 'Index 1: Business', style: optionStyle, ), Text( 'Index 2: School', style: optionStyle, ), ]; void _onItemTapped(int index) { setState(() { _selectedIndex = index; }); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('BottomNavigationBar Sample'), ), body: Center( child: _widgetOptions.elementAt(_selectedIndex), ), bottomNavigationBar: BottomNavigationBar( items: const <BottomNavigationBarItem>[ BottomNavigationBarItem( icon: Icon(Icons.home), label: 'Home', ), BottomNavigationBarItem( icon: Icon(Icons.business), label: 'Business', ), BottomNavigationBarItem( icon: Icon(Icons.school), label: 'School', ), ], currentIndex: _selectedIndex, selectedItemColor: Colors.amber[800], onTap: _onItemTapped, ), ); }
}

Source : https://api.flutter.dev/flutter/material/BottomNavigationBar-class.html | Last Update : Sat, 18 Jun 22

Question : flutter bottom navigation bar four items

Answered by : angry-aardvark-9xrd9pk09l4c

bottomNavigationBar: BottomNavigationBar( type: BottomNavigationBarType.fixed, // This is all you need! items: // ...,
)

Source : https://stackoverflow.com/questions/52199196/flutter-bottomnavigationbar-not-working-with-more-than-three-items | Last Update : Tue, 17 Aug 21

Question : bottom navigation bar item fixed flutter

Answered by : blueeyed-badger-74db04r8kho5

BottomNavBar

Source : | Last Update : Mon, 24 Jan 22

Answers related to flutter bottom navigation bar four items

Code Explorer Popular Question For Dart