commit
70ef29df2d
@ -1,3 +1,7 @@
|
|||||||
|
## [5.6.2] - 2022-01-07
|
||||||
|
|
||||||
|
* Fix null return in CheckoutShippingTypeWidget
|
||||||
|
|
||||||
## [5.6.1] - 2022-01-05
|
## [5.6.1] - 2022-01-05
|
||||||
|
|
||||||
* Fix bug with bottom navigation bar in Notic theme
|
* Fix bug with bottom navigation bar in Notic theme
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
# WooCommerce App: Label StoreMax
|
# WooCommerce App: Label StoreMax
|
||||||
|
|
||||||
### Label StoreMax - v5.6.1
|
### Label StoreMax - v5.6.2
|
||||||
|
|
||||||
|
|
||||||
[Official WooSignal WooCommerce App](https://woosignal.com)
|
[Official WooSignal WooCommerce App](https://woosignal.com)
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
// import 'package:firebase_core/firebase_core.dart';
|
// import 'package:firebase_core/firebase_core.dart';
|
||||||
// import 'package:firebase_messaging/firebase_messaging.dart';
|
// import 'package:firebase_messaging/firebase_messaging.dart';
|
||||||
|
// import 'package:flutter_app/firebase_options.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:flutter_app/bootstrap/app_helper.dart';
|
import 'package:flutter_app/bootstrap/app_helper.dart';
|
||||||
|
|||||||
@ -23,7 +23,7 @@ class CheckoutShippingTypeWidget extends StatelessWidget {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
bool hasDisableShipping = wooSignalApp.disableShipping == 1;
|
bool hasDisableShipping = wooSignalApp.disableShipping == 1;
|
||||||
if (hasDisableShipping == true) {
|
if (hasDisableShipping == true) {
|
||||||
return null;
|
return Container();
|
||||||
}
|
}
|
||||||
bool hasSelectedShippingType = checkoutSession.shippingType != null;
|
bool hasSelectedShippingType = checkoutSession.shippingType != null;
|
||||||
return CheckoutRowLine(
|
return CheckoutRowLine(
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
# Official WooSignal App Template for WooCommerce
|
# Official WooSignal App Template for WooCommerce
|
||||||
|
|
||||||
# Label StoreMax
|
# Label StoreMax
|
||||||
# Version: 5.6.1
|
# Version: 5.6.2
|
||||||
# Author: Anthony Gordon
|
# Author: Anthony Gordon
|
||||||
# Homepage: https://woosignal.com
|
# Homepage: https://woosignal.com
|
||||||
# Documentation: https://woosignal.com/docs/app/label-storemax
|
# Documentation: https://woosignal.com/docs/app/label-storemax
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user