fix:跳转语音包设置

This commit is contained in:
liyi 2025-07-25 17:10:20 +08:00
parent 42d1ea52d4
commit b8fd34c232

View File

@ -26,31 +26,22 @@ class _LockVoiceSettingState extends State<LockVoiceSetting> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppColors.mainBackgroundColor,
appBar: TitleAppBar(
barTitle: '锁语音包设置'.tr,
haveBack: false,
haveOtherLeftWidget: true,
leftWidget: TextButton(
onPressed: () {
Get.offAllNamed(Routers.starLockMain);
},
child: Text(
'跳过'.tr,
style: TextStyle(
color: Colors.white,
fontSize: 24.sp,
fontWeight: FontWeight.w500,
),
),
),
backgroundColor: AppColors.mainColor,
actionsList: [
TextButton(
onPressed: logic.saveSpeechLanguageSettings,
return WillPopScope(
onWillPop: () async {
return false;
},
child: Scaffold(
backgroundColor: AppColors.mainBackgroundColor,
appBar: TitleAppBar(
barTitle: '锁语音包设置'.tr,
haveBack: false,
haveOtherLeftWidget: true,
leftWidget: TextButton(
onPressed: () {
Get.offAllNamed(Routers.starLockMain);
},
child: Text(
'保存'.tr,
'跳过'.tr,
style: TextStyle(
color: Colors.white,
fontSize: 24.sp,
@ -58,9 +49,23 @@ class _LockVoiceSettingState extends State<LockVoiceSetting> {
),
),
),
],
backgroundColor: AppColors.mainColor,
actionsList: [
TextButton(
onPressed: logic.saveSpeechLanguageSettings,
child: Text(
'保存'.tr,
style: TextStyle(
color: Colors.white,
fontSize: 24.sp,
fontWeight: FontWeight.w500,
),
),
),
],
),
body: _buildBody(),
),
body: _buildBody(),
);
}