Skip to content

Instantly share code, notes, and snippets.

@zafarivaev
Created March 7, 2020 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zafarivaev/5f68f8b682037792730e450e373b4c82 to your computer and use it in GitHub Desktop.
Save zafarivaev/5f68f8b682037792730e450e373b4c82 to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return Scaffold(
bottomNavigationBar: BottomNavigationBar(
items: _navigationBarItems,
currentIndex: _selectedIndex,
selectedItemColor: Colors.green,
onTap: _onItemTapped,
),
body: _currentWidget,
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment