1. What I wish I could do
So far, my BottomNavigationBar looks ok (and simple), but, given that I have only 2 items in it, I would like to bring them a little bit closer together (and maybe to the right), so they are more easily reached. How do I do that? Is there a property that does the job? Maybe inside the BottomNavigationBar theme?
2. A Snippet
Here is what it looks like right now:
bottomNavigationBar: BottomNavigationBar(
items: <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.account_circle),
title: Text('Personal Data'),
),
BottomNavigationBarItem(
icon: Icon(Icons.payment),
title: Text('Contracts'),
),
],
currentIndex: _selectedIndex,
selectedItemColor: Colors.orange,
onTap: _onItemTapped,
),