fix(android): only show data transfer action on home screen

This commit is contained in:
Harsh Shandilya 2023-06-05 00:56:20 +05:30
parent c6ea1182e0
commit a82d0e7063
No known key found for this signature in database

View file

@ -151,7 +151,7 @@ fun LobstersApp(
}
},
actions = {
if (currentDestination != Destinations.DataTransfer.route) {
if (navItems.any { it.route == currentDestination }) {
IconButton(onClick = { navController.navigate(Destinations.DataTransfer.route) }) {
Icon(
imageVector = Icons.Outlined.ImportExport,