proxybuy-flutter/lib/screens/auth/user_info_page.dart

244 lines
8.8 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
import '../../extension/screenSize.dart';
import '../../gen/assets.gen.dart';
import '../../res/colors.dart';
import '../mains/navigation/navigation.dart';
import '../../widgets/button.dart';
class UserInfoPage extends StatefulWidget {
const UserInfoPage({super.key});
@override
State<UserInfoPage> createState() => _UserInfoPageState();
}
class _UserInfoPageState extends State<UserInfoPage> {
DateTime? selectedDate;
String? selectedGender;
@override
Widget build(BuildContext context) {
final width = context.screenWidth;
final height = context.screenHeight;
return Scaffold(
body: SafeArea(
child: SingleChildScrollView(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
IconButton(
icon: SvgPicture.asset(Assets.icons.back.path),
onPressed: () => Navigator.pop(context),
),
],
),
Padding(
padding: const EdgeInsets.symmetric(
horizontal: 0,
vertical: 24,
),
child: Center(
child: Padding(
padding: const EdgeInsets.only(top: 0),
child: SvgPicture.asset(
Assets.images.userinfo.path,
height: height / 2.9,
),
),
),
),
SizedBox(height: height / 20),
Padding(
padding: EdgeInsets.fromLTRB(25, 0, 25, 20),
child: Text(
"what do you like to be called in this application?",
style: TextStyle(
fontWeight: FontWeight.bold,
color: AppColors.secondaryText,
),
),
),
Padding(
padding: EdgeInsets.fromLTRB(25, 0, 25, 0),
child: TextField(
decoration: InputDecoration(
counterText: '',
hintText: "Enter here...",
hintStyle: TextStyle(
fontWeight: FontWeight.normal,
color: AppColors.greyBorder,
),
filled: true,
fillColor: AppColors.profileField,
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(12)),
borderSide: BorderSide(
color: AppColors.borderPrimary,
),
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(12)),
borderSide: BorderSide(color: AppColors.greyBorder, width: 2),
),
),
),
),
const SizedBox(height: 24),
Padding(
padding: EdgeInsets.fromLTRB(25, 0, 25, 10),
child: Text(
"Gender",
style: TextStyle(
fontWeight: FontWeight.bold,
color: AppColors.secondaryText,
),
),
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 25),
child: Wrap(
spacing: 3,
alignment: WrapAlignment.start,
runSpacing: 2,
runAlignment: WrapAlignment.start,
children: [
Directionality(
textDirection: TextDirection.rtl,
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Radio<String>(
value: "Prefer not to say",
groupValue: selectedGender,
activeColor: AppColors.checkboxActive,
visualDensity: VisualDensity.compact,
materialTapTargetSize:
MaterialTapTargetSize.shrinkWrap,
onChanged: (value) {
setState(() {
selectedGender = value!;
});
},
),
Text(
"Prefer not to say",
style: TextStyle(
color: AppColors.secondaryText,
),
),
],
),
),
SizedBox(width: 5,),
Directionality(
textDirection: TextDirection.rtl,
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Radio<String>(
value: "Male",
groupValue: selectedGender,
activeColor: AppColors.checkboxActive,
visualDensity: VisualDensity.compact,
materialTapTargetSize:
MaterialTapTargetSize.shrinkWrap,
onChanged: (value) {
setState(() {
selectedGender = value!;
});
},
),
Text(
"Male",
style: TextStyle(
color: AppColors.secondaryText,
),
),
],
),
),
SizedBox(width: 5,),
Directionality(
textDirection: TextDirection.rtl,
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Radio<String>(
value: "Female",
groupValue: selectedGender,
activeColor: AppColors.checkboxActive,
visualDensity: VisualDensity.compact,
materialTapTargetSize:
MaterialTapTargetSize.shrinkWrap,
onChanged: (value) {
setState(() {
selectedGender = value!;
});
},
),
Text(
"Female",
style: TextStyle(
color: AppColors.secondaryText,
),
),
],
),
),
],
),
),
SizedBox(height: height / 8),
Center(
child: SizedBox(
width: width * 0.9,
child: Button(
text: "Submit",
onPressed: () {
Navigator.pushAndRemoveUntil(
context,
MaterialPageRoute(
builder: (context) => const MainScreen(),
),
(route) => false,
);
},
color: AppColors.buttonPrimary,
),
),
),
GestureDetector(
onTap: () {
Navigator.pushAndRemoveUntil(
context,
MaterialPageRoute(builder: (context) => const MainScreen()),
(route) => false,
);
},
child: Padding(
padding: const EdgeInsets.all(20.0),
child: Center(
child: InkWell(
child: Text(
"Skip",
style: TextStyle(
color: AppColors.primary,
fontWeight: FontWeight.bold,
fontSize: 16,
),
),
),
),
),
),
],
),
),
),
);
}
}