app-starlock/star_lock/lib/login/seletCountryRegion/seletCountryRegion_page.dart
2023-07-29 09:25:21 +08:00

49 lines
1.4 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/titleAppBar.dart';
import '../../translations/trans_lib.dart';
class SeletCountryRegionPage extends StatefulWidget {
const SeletCountryRegionPage({Key? key}) : super(key: key);
@override
State<SeletCountryRegionPage> createState() => _SeletCountryRegionPageState();
}
class _SeletCountryRegionPageState extends State<SeletCountryRegionPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: false,
backgroundColor: const Color(0xFFFFFFFF),
appBar: TitleAppBar(barTitle: "${TranslationLoader.lanKeys!.selet!.tr} ${TranslationLoader.lanKeys!.countryAndRegion!.tr}", haveBack:true, backgroundColor: AppColors.mainColor, actionsList: [
TextButton(
child: Text(
TranslationLoader.lanKeys!.reset!.tr,
style: const TextStyle(color: Colors.white),
),
onPressed: () {
Navigator.pop(context, {'code': "+86", "countryId": "9"});
},
),
],),
body:ListView(
padding: EdgeInsets.only(top: 40.h, left: 40.w, right: 40.w),
children: [
],
)
);
}
_backBtnAction(){
}
}