2023-07-10 17:50:31 +08:00
|
|
|
import 'package:flutter/material.dart';
|
2023-07-28 15:37:33 +08:00
|
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
2023-07-10 17:50:31 +08:00
|
|
|
import 'package:get/get.dart';
|
|
|
|
|
|
|
|
|
|
import '../../../appRouters.dart';
|
|
|
|
|
import '../../../app_settings/app_colors.dart';
|
|
|
|
|
import '../../../tools/titleAppBar.dart';
|
|
|
|
|
import '../../../translations/trans_lib.dart';
|
|
|
|
|
|
|
|
|
|
class LockAddressPage extends StatefulWidget {
|
2023-07-15 15:11:28 +08:00
|
|
|
const LockAddressPage({Key? key}) : super(key: key);
|
2023-07-10 17:50:31 +08:00
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
State<LockAddressPage> createState() => _LockAddressPageState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class _LockAddressPageState extends State<LockAddressPage> {
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return Scaffold(
|
|
|
|
|
backgroundColor: AppColors.mainBackgroundColor,
|
2023-07-28 15:37:33 +08:00
|
|
|
appBar: TitleAppBar(
|
|
|
|
|
barTitle: "锁地址",
|
|
|
|
|
haveBack: true,
|
|
|
|
|
backgroundColor: AppColors.mainColor,
|
|
|
|
|
actionsList: [
|
|
|
|
|
TextButton(
|
|
|
|
|
child: Text(
|
|
|
|
|
"保存",
|
|
|
|
|
style: TextStyle(color: Colors.white, fontSize: 24.sp),
|
|
|
|
|
),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
Navigator.pushNamed(context, Routers.saveLockPage);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
body: Container());
|
2023-07-10 17:50:31 +08:00
|
|
|
}
|
|
|
|
|
}
|