Skip to content

Commit 9ad8910

Browse files
committed
v5.6.2 - updates
1 parent c98fd02 commit 9ad8910

File tree

6 files changed

+9
-4
lines changed

6 files changed

+9
-4
lines changed

LabelStoreMax/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [5.6.2] - 2022-01-07
2+
3+
* Fix null return in CheckoutShippingTypeWidget
4+
15
## [5.6.1] - 2022-01-05
26

37
* Fix bug with bottom navigation bar in Notic theme

LabelStoreMax/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# WooCommerce App: Label StoreMax
66

7-
### Label StoreMax - v5.6.1
7+
### Label StoreMax - v5.6.2
88

99

1010
[Official WooSignal WooCommerce App](https://woosignal.com)

LabelStoreMax/lib/bootstrap/boot.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// import 'package:firebase_core/firebase_core.dart';
22
// import 'package:firebase_messaging/firebase_messaging.dart';
3+
// import 'package:flutter_app/firebase_options.dart';
34
import 'package:flutter/material.dart';
45
import 'package:flutter/services.dart';
56
import 'package:flutter_app/bootstrap/app_helper.dart';

LabelStoreMax/lib/resources/widgets/checkout_shipping_type_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class CheckoutShippingTypeWidget extends StatelessWidget {
2323
Widget build(BuildContext context) {
2424
bool hasDisableShipping = wooSignalApp.disableShipping == 1;
2525
if (hasDisableShipping == true) {
26-
return null;
26+
return Container();
2727
}
2828
bool hasSelectedShippingType = checkoutSession.shippingType != null;
2929
return CheckoutRowLine(

LabelStoreMax/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Official WooSignal App Template for WooCommerce
22

33
# Label StoreMax
4-
# Version: 5.6.1
4+
# Version: 5.6.2
55
# Author: Anthony Gordon
66
# Homepage: https://woosignal.com
77
# Documentation: https://woosignal.com/docs/app/label-storemax

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# WooCommerce App: Label StoreMax
66

7-
### Label StoreMax - v5.6.1
7+
### Label StoreMax - v5.6.2
88

99

1010
[Official WooSignal WooCommerce App](https://woosignal.com)

0 commit comments

Comments
 (0)