Skip to content

Commit c7d5cf9

Browse files
authored
Merge pull request #23 from woosignal/master
v5.5.2 - updates
2 parents 0665d0b + d7a38cb commit c7d5cf9

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

LabelStoreMax/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [5.5.2] - 2021-12-18
2+
3+
* Fix continuous loading on categories screen
4+
* Add theme color to buttons
5+
* Code cleanup
6+
17
## [5.5.1] - 2021-12-18
28

39
* Fix bug if store connection fails

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.5.1
7+
### Label StoreMax - v5.5.2
88

99

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

LabelStoreMax/lib/bootstrap/boot.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// import 'package:firebase_core/firebase_core.dart';
22
// import 'package:firebase_messaging/firebase_messaging.dart';
3-
// import 'package:flutter_app/firebase_options.dart';
43
import 'package:flutter/material.dart';
54
import 'package:flutter/services.dart';
65
import 'package:flutter_app/bootstrap/app_helper.dart';

LabelStoreMax/lib/resources/pages/browse_category.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ class _BrowseCategoryPageState extends NyState<BrowseCategoryPage> {
6767

6868
if (products.length == 0) {
6969
_shouldStopRequests = true;
70+
_isLoading = false;
7071
setState(() {});
7172
return;
7273
} else {

LabelStoreMax/lib/resources/widgets/buttons.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1010

1111
import 'package:flutter/material.dart';
12+
import 'package:flutter_app/bootstrap/helpers.dart';
1213
import 'package:hexcolor/hexcolor.dart';
1314

1415
class PrimaryButton extends StatelessWidget {
@@ -29,8 +30,8 @@ class PrimaryButton extends StatelessWidget {
2930
textStyle: Theme.of(context)
3031
.textTheme
3132
.button
32-
.copyWith(fontSize: 16, fontWeight: FontWeight.bold, color: Colors.white),
33-
bgColor: HexColor("#529cda"),
33+
.copyWith(fontSize: 16, fontWeight: FontWeight.bold, color: ThemeColor.get(context).buttonPrimaryContent),
34+
bgColor: ThemeColor.get(context).buttonBackground,
3435
);
3536
}
3637

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.5.1
4+
# Version: 5.5.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.5.1
7+
### Label StoreMax - v5.5.2
88

99

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

0 commit comments

Comments
 (0)