32 lines
1.0 KiB
Dart
32 lines
1.0 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),
|
|
body:ListView(
|
|
padding: EdgeInsets.only(top: 40.h, left: 40.w, right: 40.w),
|
|
children: [
|
|
|
|
],
|
|
)
|
|
);
|
|
}
|
|
}
|