Changes and tweaks
This commit is contained in:
parent
b5051f2d90
commit
94996beb72
@ -2,3 +2,4 @@ org.gradle.jvmargs=-Xmx1536M
|
|||||||
|
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
|
android.enableR8=true
|
||||||
|
|||||||
@ -22,8 +22,7 @@
|
|||||||
|
|
||||||
const app_name = "MyApp";
|
const app_name = "MyApp";
|
||||||
|
|
||||||
const app_key =
|
const app_key = "My App Key";
|
||||||
"My App Key";
|
|
||||||
|
|
||||||
const app_logo_url = "https://woosignal.com/images/120x120_woosignal.png";
|
const app_logo_url = "https://woosignal.com/images/120x120_woosignal.png";
|
||||||
|
|
||||||
@ -32,8 +31,7 @@ const app_privacy_url = "https://yourdomain.com/privacy";
|
|||||||
|
|
||||||
/*<! ------ STRIPE (OPTIONAL) ------!>*/
|
/*<! ------ STRIPE (OPTIONAL) ------!>*/
|
||||||
|
|
||||||
const app_stripe_account =
|
const app_stripe_account = "Your Stripe Account"; // Your StripeAccount key from WooSignal
|
||||||
"Your Stripe Account"; // Your StripeAccount key from WooSignal
|
|
||||||
|
|
||||||
const app_stripe_live_mode = false; // SET true for live payments
|
const app_stripe_live_mode = false; // SET true for live payments
|
||||||
|
|
||||||
|
|||||||
@ -180,7 +180,7 @@ Widget wsCardProductItem(BuildContext context, {int index, Product product}) {
|
|||||||
padding: EdgeInsets.all(10),
|
padding: EdgeInsets.all(10),
|
||||||
margin: EdgeInsets.all(5),
|
margin: EdgeInsets.all(5),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: Colors.white, borderRadius: BorderRadius.circular(5)),
|
color: Colors.white, borderRadius: BorderRadius.circular(5),),
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
@ -207,6 +207,8 @@ Widget wsCardProductItem(BuildContext context, {int index, Product product}) {
|
|||||||
child: Text(
|
child: Text(
|
||||||
product.name,
|
product.name,
|
||||||
style: Theme.of(context).textTheme.body1,
|
style: Theme.of(context).textTheme.body1,
|
||||||
|
overflow: TextOverflow.clip,
|
||||||
|
maxLines: 1,
|
||||||
),
|
),
|
||||||
flex: 1,
|
flex: 1,
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user