93 lines
2.8 KiB
Dart
93 lines
2.8 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/commonItem.dart';
|
|
import '../../tools/titleAppBar.dart';
|
|
import '../../translations/trans_lib.dart';
|
|
|
|
class AbountPage extends StatefulWidget {
|
|
const AbountPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<AbountPage> createState() => _AbountPageState();
|
|
}
|
|
|
|
class _AbountPageState extends State<AbountPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: AppColors.mainBackgroundColor,
|
|
appBar: TitleAppBar(
|
|
barTitle: TranslationLoader.lanKeys!.about!.tr,
|
|
haveBack: true,
|
|
backgroundColor: AppColors.mainColor),
|
|
body: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
SizedBox(
|
|
height: 150.h,
|
|
),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Image.asset(
|
|
"images/icon_main_1024.png",
|
|
width: 200.w,
|
|
height: 200.w,
|
|
),
|
|
],
|
|
),
|
|
SizedBox(
|
|
height: 30.h,
|
|
),
|
|
const Text("通通锁 6.7.0"),
|
|
SizedBox(
|
|
height: 80.h,
|
|
),
|
|
CommonItem(
|
|
leftTitel: TranslationLoader.lanKeys!.introduce!.tr,
|
|
rightTitle: "",
|
|
isHaveLine: false,
|
|
isHaveDirection: true,
|
|
action: () {}),
|
|
CommonItem(
|
|
leftTitel: TranslationLoader.lanKeys!.userAgreement!.tr,
|
|
rightTitle: "",
|
|
isHaveLine: false,
|
|
isHaveDirection: true,
|
|
action: () {}),
|
|
CommonItem(
|
|
leftTitel: TranslationLoader.lanKeys!.privacyPolicy!.tr,
|
|
rightTitle: "",
|
|
isHaveLine: false,
|
|
isHaveDirection: true,
|
|
action: () {}),
|
|
CommonItem(
|
|
leftTitel: TranslationLoader
|
|
.lanKeys!.personalInformationCollectionList!.tr,
|
|
rightTitle: "",
|
|
isHaveLine: false,
|
|
isHaveDirection: true,
|
|
action: () {}),
|
|
CommonItem(
|
|
leftTitel: TranslationLoader
|
|
.lanKeys!.applicationPermissionDescription!.tr,
|
|
rightTitle: "",
|
|
isHaveLine: false,
|
|
isHaveDirection: true,
|
|
action: () {}),
|
|
CommonItem(
|
|
leftTitel: TranslationLoader
|
|
.lanKeys!.thirdPartyInformationSharingList!.tr,
|
|
rightTitle: "",
|
|
isHaveLine: false,
|
|
isHaveDirection: true,
|
|
action: () {}),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|