修改锁通通名字

This commit is contained in:
魏少阳 2024-03-06 19:12:58 +08:00
parent ea7287583d
commit b168b229d9
4 changed files with 23 additions and 5 deletions

View File

@ -7,7 +7,7 @@
buildImplicitDependencies = "YES"> buildImplicitDependencies = "YES">
</BuildAction> </BuildAction>
<TestAction <TestAction
buildConfiguration = "Debug-sky" buildConfiguration = "Release-sky"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"> shouldUseLaunchSchemeArgsEnv = "YES">
@ -24,7 +24,7 @@
</Testables> </Testables>
</TestAction> </TestAction>
<LaunchAction <LaunchAction
buildConfiguration = "Debug-sky" buildConfiguration = "Release-sky"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0" launchStyle = "0"
@ -62,7 +62,7 @@
</BuildableProductRunnable> </BuildableProductRunnable>
</ProfileAction> </ProfileAction>
<AnalyzeAction <AnalyzeAction
buildConfiguration = "Debug-sky"> buildConfiguration = "Release-sky">
</AnalyzeAction> </AnalyzeAction>
<ArchiveAction <ArchiveAction
buildConfiguration = "Release-sky" buildConfiguration = "Release-sky"

View File

@ -32,6 +32,22 @@ class F {
throw Exception('flavor[$name] title not found'); throw Exception('flavor[$name] title not found');
} }
} }
static String get navTitle {
switch (appFlavor) {
case Flavor.dev:
return '星锁-dev';
case Flavor.pre:
return '星锁';
case Flavor.sky:
return '锁通通';
case Flavor.xhj:
return '鑫锁';
default:
throw Exception('flavor[$name] title not found');
}
}
static String get apiPrefix { static String get apiPrefix {
switch (appFlavor) { switch (appFlavor) {
case Flavor.dev: case Flavor.dev:

View File

@ -3,6 +3,7 @@ import 'package:flutter/material.dart';
import 'package:get/get.dart'; import 'package:get/get.dart';
import '../../../app_settings/app_colors.dart'; import '../../../app_settings/app_colors.dart';
import '../../../flavors.dart';
import '../../../tools/titleAppBar.dart'; import '../../../tools/titleAppBar.dart';
import '../../../translations/trans_lib.dart'; import '../../../translations/trans_lib.dart';
import '../../lockMian/entity/lockListInfo_entity.dart'; import '../../lockMian/entity/lockListInfo_entity.dart';
@ -41,7 +42,7 @@ class _LockDetailMainPageState extends State<LockDetailMainPage> {
return Scaffold( return Scaffold(
backgroundColor: Colors.white, backgroundColor: Colors.white,
appBar: TitleAppBar( appBar: TitleAppBar(
barTitle: "星锁".tr, barTitle: F.navTitle,
haveBack: true, haveBack: true,
backgroundColor: AppColors.mainColor), backgroundColor: AppColors.mainColor),
body: LockDetailPage(isOnlyOneData:isOnlyOneData, lockListInfoItemEntity: keyInfos), body: LockDetailPage(isOnlyOneData:isOnlyOneData, lockListInfoItemEntity: keyInfos),

View File

@ -11,6 +11,7 @@ import 'package:star_lock/tools/xs_aliyunPush.dart';
import '../../../appRouters.dart'; import '../../../appRouters.dart';
import '../../../baseWidget.dart'; import '../../../baseWidget.dart';
import '../../../flavors.dart';
import '../../../mine/mine/starLockMine_page.dart'; import '../../../mine/mine/starLockMine_page.dart';
import '../../../tools/EasyRefreshTool.dart'; import '../../../tools/EasyRefreshTool.dart';
import '../../../tools/storage.dart'; import '../../../tools/storage.dart';
@ -52,7 +53,7 @@ class _StarLockMainPageState extends State<StarLockMainPage> with BaseWidget {
return Scaffold( return Scaffold(
backgroundColor: const Color(0xFFF5F5F5), backgroundColor: const Color(0xFFF5F5F5),
appBar: TitleAppBar( appBar: TitleAppBar(
barTitle: "星锁".tr, barTitle: F.navTitle,
haveBack: false, haveBack: false,
haveOtherLeftWidget: true, haveOtherLeftWidget: true,
leftWidget: Builder( leftWidget: Builder(