v5.6.2 - updates

This commit is contained in:
Anthony 2022-01-07 14:07:42 +00:00
parent c98fd0246d
commit 9ad8910f4d
6 changed files with 9 additions and 4 deletions

View File

@ -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

View File

@ -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)

View File

@ -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';

View File

@ -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(

View File

@ -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

View File

@ -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)