You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
266 lines
11 KiB
Dart
266 lines
11 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:diplomaticquarterapp/theme/colors.dart';
|
|
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
|
import 'package:diplomaticquarterapp/uitl/utils_new.dart';
|
|
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
|
|
class PaymentMethod extends StatefulWidget {
|
|
@override
|
|
_PaymentMethodState createState() => _PaymentMethodState();
|
|
}
|
|
|
|
class _PaymentMethodState extends State<PaymentMethod> {
|
|
String selectedPaymentMethod = "MADA";
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AppScaffold(
|
|
appBarTitle: TranslationBase.of(context).paymentMethod,
|
|
isShowAppBar: true,
|
|
showNewAppBar: true,
|
|
showNewAppBarTitle: true,
|
|
backgroundColor: CustomColors.appBackgroudGreyColor,
|
|
body: Container(
|
|
margin: EdgeInsets.fromLTRB(20.0, 10.0, 20.0, 10.0),
|
|
child: SingleChildScrollView(
|
|
child: Container(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: <Widget>[
|
|
Container(
|
|
margin: EdgeInsets.fromLTRB(0.0, 15.0, 0.0, 0.0),
|
|
alignment: Alignment.center,
|
|
child: Text(TranslationBase.of(context).selectPaymentOption, style: TextStyle(fontSize: 18.0, fontWeight: FontWeight.bold)),
|
|
),
|
|
Container(
|
|
width: double.infinity,
|
|
child: InkWell(
|
|
onTap: () {
|
|
updateSelectedPaymentMethod("MADA");
|
|
},
|
|
child: Card(
|
|
elevation: 3.0,
|
|
margin: EdgeInsets.fromLTRB(8.0, 16.0, 8.0, 8.0),
|
|
color: Colors.white,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(10),
|
|
side: selectedPaymentMethod == "MADA" ? BorderSide(color: Colors.green, width: 5.0) : BorderSide(color: Colors.transparent, width: 0.0),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Container(
|
|
height: 60.0,
|
|
width:60,
|
|
padding: EdgeInsets.all(7.0),
|
|
child: Image.asset("assets/images/new-design/mada.png"),
|
|
),
|
|
mWidth(12),
|
|
Text(
|
|
"MADA",
|
|
style: TextStyle(
|
|
color: Colors.black,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Container(
|
|
width: double.infinity,
|
|
child: InkWell(
|
|
onTap: () {
|
|
updateSelectedPaymentMethod("VISA");
|
|
},
|
|
child: Card(
|
|
elevation: 3.0,
|
|
margin: EdgeInsets.fromLTRB(8.0, 16.0, 8.0, 8.0),
|
|
color: Colors.white,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(10),
|
|
side: selectedPaymentMethod == "VISA" ? BorderSide(color: Colors.green, width: 5.0) : BorderSide(color: Colors.transparent, width: 0.0),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Container(
|
|
height: 60.0,
|
|
padding: EdgeInsets.all(7.0),
|
|
width: 60,
|
|
child: Image.asset("assets/images/new-design/visa.png"),
|
|
),
|
|
mWidth(12),Text(
|
|
"VISA",
|
|
style: TextStyle(
|
|
color: Colors.black,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Container(
|
|
width: double.infinity,
|
|
child: InkWell(
|
|
onTap: () {
|
|
updateSelectedPaymentMethod("MASTERCARD");
|
|
},
|
|
child: Card(
|
|
elevation: 3.0,
|
|
margin: EdgeInsets.fromLTRB(8.0, 16.0, 8.0, 8.0),
|
|
color: Colors.white,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(10),
|
|
side: selectedPaymentMethod == "MASTERCARD" ? BorderSide(color: Colors.green, width: 5.0) : BorderSide(color: Colors.transparent, width: 0.0),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Container(
|
|
height: 60.0,
|
|
padding: EdgeInsets.all(7.0),
|
|
width: 60,
|
|
child: Image.asset("assets/images/new-design/mastercard.png"),
|
|
),
|
|
mWidth(12),
|
|
Text(
|
|
"MATER CARD",
|
|
style: TextStyle(
|
|
color: Colors.black,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Container(
|
|
width: double.infinity,
|
|
child: InkWell(
|
|
onTap: () {
|
|
updateSelectedPaymentMethod("Installment");
|
|
},
|
|
child: Card(
|
|
elevation: 3.0,
|
|
margin: EdgeInsets.fromLTRB(8.0, 16.0, 8.0, 8.0),
|
|
color: Colors.white,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(10),
|
|
side: selectedPaymentMethod == "Installment" ? BorderSide(color: Colors.green, width: 5.0) : BorderSide(color: Colors.transparent, width: 0.0),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Container(
|
|
height: 60.0,
|
|
padding: EdgeInsets.all(7.0),
|
|
width: 60,
|
|
child: Image.asset("assets/images/new-design/installment.png"),
|
|
),
|
|
mWidth(12),
|
|
Text(
|
|
"INSTALLMENT",
|
|
style: TextStyle(
|
|
color: Colors.black,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Platform.isIOS
|
|
? Container(
|
|
margin: EdgeInsets.only(top: 25.0),
|
|
child: Flex(
|
|
direction: Axis.horizontal,
|
|
children: <Widget>[
|
|
Expanded(
|
|
child: Container(
|
|
child: InkWell(
|
|
onTap: () {
|
|
updateSelectedPaymentMethod("ApplePay");
|
|
},
|
|
child: Card(
|
|
elevation: 3.0,
|
|
margin: EdgeInsets.fromLTRB(8.0, 16.0, 8.0, 8.0),
|
|
color: Colors.white,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(10),
|
|
side: selectedPaymentMethod == "ApplePay" ? BorderSide(color: Colors.green, width: 5.0) : BorderSide(color: Colors.transparent, width: 0.0),
|
|
),
|
|
child: Container(
|
|
height: 120.0,
|
|
padding: EdgeInsets.all(20.0),
|
|
child: SvgPicture.asset("assets/images/new-design/applepay.svg"),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Expanded(
|
|
child: Container(),
|
|
),
|
|
],
|
|
),
|
|
)
|
|
: Container(),
|
|
SizedBox(
|
|
height: 150.0,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
bottomSheet: Container(
|
|
padding: EdgeInsets.fromLTRB(20.0, 10.0, 20.0, 20.0),
|
|
color: Colors.white,
|
|
child: Container(
|
|
width: MediaQuery.of(context).size.width,
|
|
height: 50.0,
|
|
color: Colors.white,
|
|
// margin: EdgeInsets.fromLTRB(20.0, 10.0, 20.0, 20.0),
|
|
child: ButtonTheme(
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(10.0),
|
|
),
|
|
minWidth: MediaQuery.of(context).size.height * 0.1,
|
|
height: 45.0,
|
|
child: RaisedButton(
|
|
color: CustomColors.accentColor,
|
|
textColor: Colors.white,
|
|
disabledTextColor: Colors.white,
|
|
disabledColor: new Color(0xFFbcc2c4),
|
|
onPressed: () {
|
|
Navigator.pop(context, selectedPaymentMethod);
|
|
},
|
|
child: Text(TranslationBase.of(context).confirm.toUpperCase(),
|
|
style: TextStyle(
|
|
fontSize: 14.0,
|
|
fontWeight: FontWeight.w600,
|
|
)),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
updateSelectedPaymentMethod(String selectedMethod) {
|
|
setState(() {
|
|
selectedPaymentMethod = selectedMethod;
|
|
});
|
|
}
|
|
}
|