Merge pull request 'feat: change NavigationDestinationLabelBehavior' (#458) from subtitles_for_menu_options into master
continuous-integration/drone/push Build is passing Details

Reviewed-on: #458
Reviewed-by: Inex Code <inex.code@selfprivacy.org>
pull/440/head
Inex Code 2024-02-08 17:18:28 +02:00
commit 27e5abfe4a
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ class _BottomBar extends StatelessWidget {
),
child: NavigationBar(
selectedIndex: prevActiveIndex == -1 ? 0 : prevActiveIndex,
labelBehavior: NavigationDestinationLabelBehavior.onlyShowSelected,
labelBehavior: NavigationDestinationLabelBehavior.alwaysShow,
onDestinationSelected: (final index) {
context.router.replaceAll([destinations[index].route]);
},