v2.0.4 Added Flexible widget for checkout details
This commit is contained in:
parent
9d57663115
commit
3270fac10b
@ -1,3 +1,8 @@
|
|||||||
|
## [2.0.4] - 2020-05-13
|
||||||
|
|
||||||
|
* Added Flexible widget for checkout details
|
||||||
|
* Bug fixes
|
||||||
|
|
||||||
## [2.0.3] - 2020-05-12
|
## [2.0.3] - 2020-05-12
|
||||||
|
|
||||||
* New state options for taxes/shipping
|
* New state options for taxes/shipping
|
||||||
|
|||||||
@ -16,7 +16,7 @@ import 'dart:ui';
|
|||||||
Developer Notes
|
Developer Notes
|
||||||
|
|
||||||
SUPPORT EMAIL - support@woosignal.com
|
SUPPORT EMAIL - support@woosignal.com
|
||||||
VERSION - 2.0.3
|
VERSION - 2.0.4
|
||||||
https://woosignal.com
|
https://woosignal.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@ -183,7 +183,8 @@ class _CheckoutDetailsPageState extends State<CheckoutDetailsPage> {
|
|||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Row(
|
Flexible(
|
||||||
|
child: Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Flexible(
|
Flexible(
|
||||||
child: wsTextEditingRow(
|
child: wsTextEditingRow(
|
||||||
@ -204,7 +205,9 @@ class _CheckoutDetailsPageState extends State<CheckoutDetailsPage> {
|
|||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
),
|
),
|
||||||
Row(
|
),
|
||||||
|
Flexible(
|
||||||
|
child: Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Flexible(
|
Flexible(
|
||||||
child: wsTextEditingRow(
|
child: wsTextEditingRow(
|
||||||
@ -222,7 +225,9 @@ class _CheckoutDetailsPageState extends State<CheckoutDetailsPage> {
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
Row(
|
),
|
||||||
|
Flexible(
|
||||||
|
child: Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Flexible(
|
Flexible(
|
||||||
child: wsTextEditingRow(
|
child: wsTextEditingRow(
|
||||||
@ -239,7 +244,9 @@ class _CheckoutDetailsPageState extends State<CheckoutDetailsPage> {
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
Row(
|
),
|
||||||
|
Flexible(
|
||||||
|
child: Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
(_strBillingCountry == "United States"
|
(_strBillingCountry == "United States"
|
||||||
? Flexible(
|
? Flexible(
|
||||||
@ -276,6 +283,7 @@ class _CheckoutDetailsPageState extends State<CheckoutDetailsPage> {
|
|||||||
].where((element) => element != null).toList(),
|
].where((element) => element != null).toList(),
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@ -286,7 +294,7 @@ class _CheckoutDetailsPageState extends State<CheckoutDetailsPage> {
|
|||||||
),
|
),
|
||||||
padding: EdgeInsets.all(8),
|
padding: EdgeInsets.all(8),
|
||||||
),
|
),
|
||||||
height: (constraints.maxHeight - constraints.minHeight) * 0.5,
|
height: (constraints.maxHeight - constraints.minHeight) * 0.6,
|
||||||
),
|
),
|
||||||
Column(
|
Column(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
|
|||||||
@ -37,7 +37,6 @@ Widget wsSecondaryButton(BuildContext context,
|
|||||||
height: 60,
|
height: 60,
|
||||||
margin: EdgeInsets.only(top: 10),
|
margin: EdgeInsets.only(top: 10),
|
||||||
child: RaisedButton(
|
child: RaisedButton(
|
||||||
padding: EdgeInsets.all(10),
|
|
||||||
child: Text(
|
child: Text(
|
||||||
title,
|
title,
|
||||||
style: Theme.of(context).primaryTextTheme.bodyText1.copyWith(
|
style: Theme.of(context).primaryTextTheme.bodyText1.copyWith(
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# Label StoreMax
|
# Label StoreMax
|
||||||
# Version 2.0.3
|
# Version 2.0.4
|
||||||
#authors: - "Anthony Gordon"
|
#authors: - "Anthony Gordon"
|
||||||
#documentation: https://woosignal.com/docs/app/ios/label-storemax
|
#documentation: https://woosignal.com/docs/app/ios/label-storemax
|
||||||
#homepage: https://woosignal.com/
|
#homepage: https://woosignal.com/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user