Commit f1a81e22 authored by Izol's avatar Izol

update version ss.8.www

parent 440268c1
sdk.dir=/Users/macbookpro/Library/Android/sdk sdk.dir=/Users/macbookpro/Library/Android/sdk
flutter.sdk=/Users/macbookpro/Developer/flutter flutter.sdk=/Users/macbookpro/Developer/flutter
flutter.buildMode=debug flutter.buildMode=debug
flutter.versionName=SS.7.WWW flutter.versionName=SS.8.WWW
flutter.versionCode=1 flutter.versionCode=1
\ No newline at end of file
...@@ -45,8 +45,8 @@ const int? cMinTopUp = 100; ...@@ -45,8 +45,8 @@ const int? cMinTopUp = 100;
const int? cMaxTopUp = 2000000; const int? cMaxTopUp = 2000000;
const cTopUp1 = "50,000"; const cTopUp1 = "50,000";
const cTopUp2 = "100,000"; const cTopUp2 = "150,000";
const cTopUp3 = "150,000"; const cTopUp3 = "100,000";
const cTopUp4 = "200,000"; const cTopUp4 = "200,000";
const cTopUp5 = ""; const cTopUp5 = "";
...@@ -1343,6 +1343,113 @@ class _HomePageState extends State<HomePage> implements AlertDialogCallback { ...@@ -1343,6 +1343,113 @@ class _HomePageState extends State<HomePage> implements AlertDialogCallback {
content: Container ( content: Container (
child: ListBody( child: ListBody(
children: <Widget>[ children: <Widget>[
Container(
margin: EdgeInsets.only(top: 30),
padding: EdgeInsets.symmetric(horizontal: 17),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Atau masukkan nominal isi ulang disini',
style: blackTextStyle.copyWith(
fontSize: 20,
fontWeight: bold,
),
),
Text(
'or enter topup amount here',
style: greyTextStyle.copyWith(
fontSize: 15,
fontStyle: FontStyle.italic,
fontWeight: light,
),
),
SizedBox(
height: 20,
),
Container(
height: 50,
padding: EdgeInsets.symmetric(horizontal: 16),
decoration: BoxDecoration(
border: Border.all(color: Colors.black12),
color: Colors.white,
borderRadius: BorderRadius.circular(12)),
child: Center(
child: Row(
children: <Widget>[
Expanded(
child: TextFormField(
style: blackTextStyle.copyWith(
fontSize: 20,
fontWeight: bold,
color: purpleColor,
),
keyboardType:
TextInputType.numberWithOptions(
signed: true,
decimal: true),
controller: amountController,
inputFormatters: [
FilteringTextInputFormatter
.digitsOnly,
CurrencyInputFormatter()
],
textInputAction:
TextInputAction.done,
decoration:
InputDecoration.collapsed(
hintText: '50,000',
hintStyle:
blackTextStyle.copyWith(
fontSize: 20,
fontWeight: bold,
color: greyColor,
),
)),
),
],
),
),
),
SizedBox(height: 30),
Column(
children: [
Row(
children: [
Expanded(
child: CustomFilledButton(
title: 'lanjut',
subtitle: 'proceed',
onPressed: () {
setState(() {
if (timer != null)
timer?.cancel();
// tapIdle();
if (mounted) {
denomLimits(
outletName,
info,
int.parse(amountController!
.text
.replaceAll(",", "")));
}
});
// _showQris(context);
/*buildGetQr();*/
/*_getQris();*/
// Navigator.pop(context);
},
),
),
],
),
],
),
],
),
),
Column( Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
...@@ -1523,113 +1630,6 @@ class _HomePageState extends State<HomePage> implements AlertDialogCallback { ...@@ -1523,113 +1630,6 @@ class _HomePageState extends State<HomePage> implements AlertDialogCallback {
), ),
], ],
), ),
Container(
margin: EdgeInsets.only(top: 30),
padding: EdgeInsets.symmetric(horizontal: 17),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Atau masukkan nominal isi ulang disini',
style: blackTextStyle.copyWith(
fontSize: 20,
fontWeight: bold,
),
),
Text(
'or enter topup amount here',
style: greyTextStyle.copyWith(
fontSize: 15,
fontStyle: FontStyle.italic,
fontWeight: light,
),
),
SizedBox(
height: 20,
),
Container(
height: 50,
padding: EdgeInsets.symmetric(horizontal: 16),
decoration: BoxDecoration(
border: Border.all(color: Colors.black12),
color: Colors.white,
borderRadius: BorderRadius.circular(12)),
child: Center(
child: Row(
children: <Widget>[
Expanded(
child: TextFormField(
style: blackTextStyle.copyWith(
fontSize: 20,
fontWeight: bold,
color: purpleColor,
),
keyboardType:
TextInputType.numberWithOptions(
signed: true,
decimal: true),
controller: amountController,
inputFormatters: [
FilteringTextInputFormatter
.digitsOnly,
CurrencyInputFormatter()
],
textInputAction:
TextInputAction.done,
decoration:
InputDecoration.collapsed(
hintText: '50,000',
hintStyle:
blackTextStyle.copyWith(
fontSize: 20,
fontWeight: bold,
color: greyColor,
),
)),
),
],
),
),
),
SizedBox(height: 30),
Column(
children: [
Row(
children: [
Expanded(
child: CustomFilledButton(
title: 'lanjut',
subtitle: 'proceed',
onPressed: () {
setState(() {
if (timer != null)
timer?.cancel();
// tapIdle();
if (mounted) {
denomLimits(
outletName,
info,
int.parse(amountController!
.text
.replaceAll(",", "")));
}
});
// _showQris(context);
/*buildGetQr();*/
/*_getQris();*/
// Navigator.pop(context);
},
),
),
],
),
],
),
],
),
),
], ],
), ),
), ),
......
...@@ -36,7 +36,7 @@ class CustomFilledButton extends StatelessWidget { ...@@ -36,7 +36,7 @@ class CustomFilledButton extends StatelessWidget {
Text( Text(
title, title,
style: whiteTextStyle.copyWith( style: whiteTextStyle.copyWith(
fontSize: 17, fontSize: 18,
fontWeight: semiBold, fontWeight: semiBold,
), ),
), ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment