Update desktop_tab_page.dart

This commit is contained in:
jimmyGALLAND 2023-01-30 17:10:05 +01:00 committed by GitHub
parent 4e69b4f2f4
commit 55318c2393
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ class DesktopTabPage extends StatefulWidget {
DesktopTabController tabController = Get.find();
tabController.add(TabInfo(
key: kTabLabelSettingPage,
label: kTabLabelSettingPage,
label: translate(kTabLabelSettingPage),
selectedIcon: Icons.build_sharp,
unselectedIcon: Icons.build_outlined,
page: DesktopSettingPage(
@ -46,7 +46,7 @@ class _DesktopTabPageState extends State<DesktopTabPage> {
RemoteCountState.init();
tabController.add(TabInfo(
key: kTabLabelHomePage,
label: kTabLabelHomePage,
label: translate(kTabLabelHomePage),
selectedIcon: Icons.home_sharp,
unselectedIcon: Icons.home_outlined,
closable: false,