app-starlock/star_lock/lib/login/seletCountryRegion/seletCountryRegion_page.dart

32 lines
1.0 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/titleAppBar.dart';
import '../../translations/trans_lib.dart';
class SeletCountryRegionPage extends StatefulWidget {
2023-07-15 15:11:28 +08:00
const SeletCountryRegionPage({Key? key}) : super(key: key);
2023-07-10 17:50:31 +08:00
@override
State<SeletCountryRegionPage> createState() => _SeletCountryRegionPageState();
}
class _SeletCountryRegionPageState extends State<SeletCountryRegionPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: false,
backgroundColor: const Color(0xFFFFFFFF),
2023-07-15 15:11:28 +08:00
appBar: TitleAppBar(barTitle: "${TranslationLoader.lanKeys!.selet!.tr} ${TranslationLoader.lanKeys!.countryAndRegion!.tr}", haveBack:true, backgroundColor: AppColors.mainColor),
2023-07-10 17:50:31 +08:00
body:ListView(
padding: EdgeInsets.only(top: 40.h, left: 40.w, right: 40.w),
children: [
],
)
);
}
}