Guest User

Untitled

a guest
Jan 22nd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. Widget _bottomBar() => BottomNavigationBar(
  2. items: [
  3. BottomNavigationBarItem(
  4. icon: Icon(Icons.home),
  5. title: Text(
  6. "Home",
  7. style: TextStyle(fontSize: 20),
  8. )),
  9. BottomNavigationBarItem(
  10. icon: Icon(Icons.linked_camera),
  11. title: Text(
  12. "Capture",
  13. style: TextStyle(fontSize: 20),
  14. )),
  15. ],
  16. onTap: (index) {
  17. setState(() {
  18. _index = index;
  19. });
  20. },
  21. currentIndex: _index,
  22. fixedColor: RED,
  23. iconSize: 40,
  24. );
Add Comment
Please, Sign In to add comment