66 lines
2.1 KiB
Dart
Raw Normal View History

2023-07-10 17:50:31 +08:00
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';
class RemoteUnlockingPage extends StatefulWidget {
2023-07-15 15:11:28 +08:00
const RemoteUnlockingPage({Key? key}) : super(key: key);
2023-07-10 17:50:31 +08:00
@override
State<RemoteUnlockingPage> createState() => _RemoteUnlockingPageState();
}
class _RemoteUnlockingPageState extends State<RemoteUnlockingPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: AppColors.mainBackgroundColor,
appBar: TitleAppBar(
barTitle: TranslationLoader.lanKeys!.remoteUnlocking!.tr,
haveBack: true,
backgroundColor: AppColors.mainColor),
body: Container(
2023-07-10 17:50:31 +08:00
padding: EdgeInsets.all(30.w),
child: Column(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
Expanded(
child: Text(
TranslationLoader.lanKeys!.remoteUnlockingPageTip!.tr,
style: TextStyle(
fontSize: 20.sp, color: AppColors.darkGrayTextColor),
)),
2023-07-10 17:50:31 +08:00
],
),
SizedBox(
height: 20.h,
),
2023-07-10 17:50:31 +08:00
Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
Expanded(
child: Text(
"${TranslationLoader.lanKeys!.currentMode!.tr} : ${TranslationLoader.lanKeys!.opened!.tr}",
style:
TextStyle(fontWeight: FontWeight.w600, fontSize: 22.sp),
)),
2023-07-10 17:50:31 +08:00
],
),
SizedBox(
height: 40.h,
2023-07-10 17:50:31 +08:00
),
SubmitBtn(
btnName: TranslationLoader.lanKeys!.closed!.tr,
onClick: () {}),
2023-07-10 17:50:31 +08:00
],
),
));
2023-07-10 17:50:31 +08:00
}
}