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 createState() => _SeletCountryRegionPageState(); } class _SeletCountryRegionPageState extends State { @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(){ } }