v5.5.2 - updates
This commit is contained in:
parent
cd3ee2aa47
commit
839ff99878
@ -1,3 +1,9 @@
|
|||||||
|
## [5.5.2] - 2021-12-18
|
||||||
|
|
||||||
|
* Fix continuous loading on categories screen
|
||||||
|
* Add theme color to buttons
|
||||||
|
* Add theme color to buttons
|
||||||
|
|
||||||
## [5.5.1] - 2021-12-18
|
## [5.5.1] - 2021-12-18
|
||||||
|
|
||||||
* Fix bug if store connection fails
|
* Fix bug if store connection fails
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
# WooCommerce App: Label StoreMax
|
# WooCommerce App: Label StoreMax
|
||||||
|
|
||||||
### Label StoreMax - v5.5.1
|
### Label StoreMax - v5.5.2
|
||||||
|
|
||||||
|
|
||||||
[Official WooSignal WooCommerce App](https://woosignal.com)
|
[Official WooSignal WooCommerce App](https://woosignal.com)
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
// 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';
|
||||||
|
|||||||
@ -67,6 +67,7 @@ class _BrowseCategoryPageState extends NyState<BrowseCategoryPage> {
|
|||||||
|
|
||||||
if (products.length == 0) {
|
if (products.length == 0) {
|
||||||
_shouldStopRequests = true;
|
_shouldStopRequests = true;
|
||||||
|
_isLoading = false;
|
||||||
setState(() {});
|
setState(() {});
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@ -9,6 +9,7 @@
|
|||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_app/bootstrap/helpers.dart';
|
||||||
import 'package:hexcolor/hexcolor.dart';
|
import 'package:hexcolor/hexcolor.dart';
|
||||||
|
|
||||||
class PrimaryButton extends StatelessWidget {
|
class PrimaryButton extends StatelessWidget {
|
||||||
@ -29,8 +30,8 @@ class PrimaryButton extends StatelessWidget {
|
|||||||
textStyle: Theme.of(context)
|
textStyle: Theme.of(context)
|
||||||
.textTheme
|
.textTheme
|
||||||
.button
|
.button
|
||||||
.copyWith(fontSize: 16, fontWeight: FontWeight.bold, color: Colors.white),
|
.copyWith(fontSize: 16, fontWeight: FontWeight.bold, color: ThemeColor.get(context).buttonPrimaryContent),
|
||||||
bgColor: HexColor("#529cda"),
|
bgColor: ThemeColor.get(context).buttonBackground,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
# Official WooSignal App Template for WooCommerce
|
# Official WooSignal App Template for WooCommerce
|
||||||
|
|
||||||
# Label StoreMax
|
# Label StoreMax
|
||||||
# Version: 5.5.1
|
# Version: 5.5.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