chore(mobile): share logo platform consistency (#3290)

This commit is contained in:
Alex
2023-07-15 20:11:51 -05:00
committed by GitHub
parent b34f4345e1
commit 436a2e9bf3
2 changed files with 10 additions and 2 deletions

View File

@@ -412,7 +412,11 @@ class GalleryViewerPage extends HookConsumerWidget {
showUnselectedLabels: false,
items: [
BottomNavigationBarItem(
icon: const Icon(Icons.ios_share_rounded),
icon: Icon(
Platform.isAndroid
? Icons.share_rounded
: Icons.ios_share_rounded,
),
label: 'control_bottom_app_bar_share'.tr(),
tooltip: 'control_bottom_app_bar_share'.tr(),
),