82 lines
2.6 KiB
Dart
82 lines
2.6 KiB
Dart
import 'package:flutter/material.dart';
|
||
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||
import 'package:get/get.dart';
|
||
|
||
import '../../../../app_settings/app_colors.dart';
|
||
import '../../../../tools/submitBtn.dart';
|
||
import '../../../../tools/titleAppBar.dart';
|
||
import '../../../../translations/trans_lib.dart';
|
||
import 'lockEscalation_logic.dart';
|
||
|
||
class LockEscalationPage extends StatefulWidget {
|
||
const LockEscalationPage({Key? key}) : super(key: key);
|
||
|
||
@override
|
||
State<LockEscalationPage> createState() => _LockEscalationPageState();
|
||
}
|
||
|
||
class _LockEscalationPageState extends State<LockEscalationPage> {
|
||
final logic = Get.put(LockEscalationLogic());
|
||
final state = Get.find<LockEscalationLogic>().state;
|
||
|
||
@override
|
||
Widget build(BuildContext context) {
|
||
return Scaffold(
|
||
backgroundColor: Colors.white,
|
||
appBar: TitleAppBar(
|
||
barTitle: TranslationLoader.lanKeys!.lockEscalation!.tr,
|
||
haveBack: true,
|
||
backgroundColor: AppColors.mainColor),
|
||
body: Container(
|
||
padding: EdgeInsets.all(30.w),
|
||
child: Column(
|
||
children: [
|
||
SizedBox(
|
||
height: 60.h,
|
||
),
|
||
Row(
|
||
mainAxisAlignment: MainAxisAlignment.center,
|
||
children: [
|
||
Image.asset(
|
||
'images/main/icon_main_lockSet_lockEscalation.png',
|
||
width: 36.w,
|
||
height: 36.w,
|
||
),
|
||
SizedBox(
|
||
width: 10.w,
|
||
),
|
||
Text(
|
||
TranslationLoader.lanKeys!.haveNewVersion!.tr,
|
||
style:
|
||
TextStyle(fontSize: 24.sp, fontWeight: FontWeight.w600),
|
||
)
|
||
],
|
||
),
|
||
SizedBox(
|
||
height: 30.h,
|
||
),
|
||
Text(
|
||
"${TranslationLoader.lanKeys!.currentVersion!.tr}:1.0.0",
|
||
style: TextStyle(
|
||
fontSize: 18.sp, color: AppColors.darkGrayTextColor),
|
||
),
|
||
SizedBox(
|
||
height: 10.h,
|
||
),
|
||
Text(
|
||
// "${TranslationLoader.lanKeys!.newVersion!.tr}:1.0.1",
|
||
"未发现新版本",
|
||
style: TextStyle(color: AppColors.mainColor, fontSize: 18.sp),
|
||
),
|
||
SizedBox(
|
||
height: 40.h,
|
||
),
|
||
SubmitBtn(
|
||
btnName: TranslationLoader.lanKeys!.upgrade!.tr,
|
||
onClick: () {}),
|
||
],
|
||
),
|
||
));
|
||
}
|
||
}
|