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