Skip to content

Instantly share code, notes, and snippets.

@pedromassango
Last active September 2, 2018 21:27
Show Gist options
  • Save pedromassango/68a384535e4f6e4b6fc2af20cbfe26e6 to your computer and use it in GitHub Desktop.
Save pedromassango/68a384535e4f6e4b6fc2af20cbfe26e6 to your computer and use it in GitHub Desktop.
Flutter app, setup an BottomNavigationBar
Scaffold(
bottomNavigationBar: BottomNavigationBar(
currentIndex: 0,
fixedColor: Colors.black,
items: <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: new Icon(Icons.home),
title: new Text("")
),
BottomNavigationBarItem(
icon: new Icon(Icons.calendar_today),
title: new Text("")
),
BottomNavigationBarItem(
icon: new Icon(Icons.playlist_add_check),
title: new Text("")
)
],
),
// code removed for brevity
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment