309 lines
13 KiB
Dart
309 lines
13 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:gap/gap.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:tanami_app/core/routes/route_name.dart';
|
|
import 'package:tanami_app/core/routes/routes.dart';
|
|
import 'package:tanami_app/core/styles/app_text.dart';
|
|
import 'package:tanami_app/features/countrySelection/presentation/bloc/choose_country_bloc.dart';
|
|
|
|
import '../../widgets/deposit_pay_method_section.dart';
|
|
|
|
class DepositScreen extends StatefulWidget {
|
|
const DepositScreen({super.key});
|
|
|
|
@override
|
|
State<DepositScreen> createState() => _DepositScreenState();
|
|
}
|
|
|
|
class _DepositScreenState extends State<DepositScreen> {
|
|
int selectedIndex = 0;
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
context.read<RadioBloc>();
|
|
return Scaffold(
|
|
backgroundColor: Colors.white,
|
|
appBar: AppBar(
|
|
backgroundColor: Colors.white,
|
|
elevation: 0,
|
|
scrolledUnderElevation: 0.0,
|
|
centerTitle: true,
|
|
title: Text(
|
|
AppText.depositScreenTitle,
|
|
style: GoogleFonts.dmSans(
|
|
color: const Color(0xFF272727),
|
|
fontSize: 20.sp,
|
|
fontWeight: FontWeight.w700,
|
|
),
|
|
),
|
|
),
|
|
body: SingleChildScrollView(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(18.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
RichText(
|
|
text: TextSpan(
|
|
children: [
|
|
TextSpan(
|
|
text: '${AppText.balance}: ',
|
|
style: GoogleFonts.dmSans(
|
|
color: Colors.grey,
|
|
fontSize: 12.sp,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
TextSpan(
|
|
text: 'SAR 178,000',
|
|
style: GoogleFonts.dmSans(
|
|
color: Colors.black,
|
|
fontSize: 14.sp,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
SizedBox(
|
|
height: 20.h,
|
|
),
|
|
Container(
|
|
width: double.infinity,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(22.r),
|
|
color: Colors.white,
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: Colors.black.withOpacity(0.15),
|
|
spreadRadius: 2,
|
|
blurRadius: 10,
|
|
offset: const Offset(0, 5),
|
|
),
|
|
],
|
|
),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.all(12.0),
|
|
child: Row(
|
|
children: [
|
|
Container(
|
|
decoration: const BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
color: Color(0xFF0FA4A4)),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(12.0),
|
|
child: Image.asset(
|
|
'assets/images/wallet_screen/deposit_list.png',
|
|
height: 36.h,
|
|
),
|
|
),
|
|
),
|
|
SizedBox(
|
|
width: 12.w,
|
|
),
|
|
Text(
|
|
AppText.depositTitle,
|
|
style: GoogleFonts.dmSans(
|
|
color: Colors.black,
|
|
fontSize: 17.sp,
|
|
fontWeight: FontWeight.w700,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Container(
|
|
decoration: BoxDecoration(
|
|
color: const Color(0xFFD8D8D8).withOpacity(0.4),
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 16.0, horizontal: 12.0),
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
Text(
|
|
'SAR',
|
|
style: GoogleFonts.dmSans(
|
|
color: const Color(0xFF363636),
|
|
fontSize: 15.sp,
|
|
fontWeight: FontWeight.w700,
|
|
),
|
|
),
|
|
SizedBox(
|
|
width: 12.w,
|
|
),
|
|
SizedBox(
|
|
width: 280.w,
|
|
child: TextFormField(
|
|
cursorColor: Colors.black,
|
|
keyboardType: TextInputType.number,
|
|
textAlign: TextAlign.center,
|
|
style: GoogleFonts.dmSans(
|
|
color: Colors.black,
|
|
fontSize: 16.sp,
|
|
fontWeight: FontWeight.w400,
|
|
),
|
|
decoration: InputDecoration(
|
|
hintText: '1000',
|
|
hintStyle: GoogleFonts.dmSans(
|
|
color: const Color(0xFFC6C6C6),
|
|
fontSize: 16.sp,
|
|
fontWeight: FontWeight.w400,
|
|
),
|
|
labelStyle:
|
|
const TextStyle(color: Colors.black),
|
|
contentPadding: const EdgeInsets.symmetric(
|
|
vertical: 15, horizontal: 10),
|
|
filled: true,
|
|
fillColor: Colors.white,
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
borderSide: const BorderSide(
|
|
color: Colors.white, width: 1),
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
borderSide: const BorderSide(
|
|
color: Colors.white, width: 1),
|
|
),
|
|
disabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
borderSide: const BorderSide(
|
|
color: Colors.white, width: 1),
|
|
),
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
borderSide: const BorderSide(
|
|
color: Colors.white, width: 1),
|
|
),
|
|
errorBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
borderSide: const BorderSide(
|
|
color: Colors.red, width: 1),
|
|
),
|
|
focusedErrorBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
borderSide: const BorderSide(
|
|
color: Colors.red, width: 1),
|
|
),
|
|
),
|
|
inputFormatters: [
|
|
FilteringTextInputFormatter.deny(
|
|
RegExp(r'\s')),
|
|
LengthLimitingTextInputFormatter(20),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Container(
|
|
decoration: BoxDecoration(
|
|
color: const Color(0xFFD8D8D8).withOpacity(0.4),
|
|
borderRadius: BorderRadius.only(
|
|
bottomLeft: Radius.circular(22.r),
|
|
bottomRight: Radius.circular(22.r),
|
|
),
|
|
border: const Border(
|
|
top: BorderSide(color: Color(0xFFD8D8D8), width: 2.0),
|
|
),
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 16.0, horizontal: 12.0),
|
|
child: Column(
|
|
children: [
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text(
|
|
AppText.feeText,
|
|
style: GoogleFonts.dmSans(
|
|
color: const Color(0xFF535353),
|
|
fontSize: 14.sp,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
Text(
|
|
'3%',
|
|
style: GoogleFonts.dmSans(
|
|
color: Colors.black,
|
|
fontSize: 14.sp,
|
|
fontWeight: FontWeight.w700,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text(
|
|
AppText.depositAmt,
|
|
style: GoogleFonts.dmSans(
|
|
color: const Color(0xFF535353),
|
|
fontSize: 14.sp,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
Text(
|
|
'SAR 253',
|
|
style: GoogleFonts.dmSans(
|
|
color: Colors.black,
|
|
fontSize: 14.sp,
|
|
fontWeight: FontWeight.w700,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
const Gap(30),
|
|
const DepositPayMethodSection(),
|
|
const Gap(16),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
bottomNavigationBar: Padding(
|
|
padding: MediaQuery.of(context).viewInsets,
|
|
child: GestureDetector(
|
|
onTap: () {
|
|
goRouter.pushNamed(RouteName.depositPreview);
|
|
},
|
|
child: Container(
|
|
margin: const EdgeInsets.all(10.0),
|
|
height: 65.h,
|
|
width: double.infinity,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(22.r),
|
|
color: const Color(0xFF004717),
|
|
),
|
|
child: Center(
|
|
child: Text(
|
|
AppText.depositNoti,
|
|
style: GoogleFonts.dmSans(
|
|
color: Colors.white,
|
|
fontSize: 14.sp,
|
|
fontWeight: FontWeight.w700,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|