Merge pull request #23 from woosignal/master

v5.5.2 - updates
This commit is contained in:
Anthony Gordon 2021-12-18 15:19:34 +00:00 committed by GitHub
commit c7d5cf9980
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,9 @@
## [5.5.2] - 2021-12-18
* Fix continuous loading on categories screen
* Add theme color to buttons
* Code cleanup
## [5.5.1] - 2021-12-18
* Fix bug if store connection fails

View File

@ -4,7 +4,7 @@
# WooCommerce App: Label StoreMax
### Label StoreMax - v5.5.1
### Label StoreMax - v5.5.2
[Official WooSignal WooCommerce App](https://woosignal.com)

View File

@ -1,6 +1,5 @@
// 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';

View File

@ -67,6 +67,7 @@ class _BrowseCategoryPageState extends NyState<BrowseCategoryPage> {
if (products.length == 0) {
_shouldStopRequests = true;
_isLoading = false;
setState(() {});
return;
} else {

View File

@ -9,6 +9,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
import 'package:flutter/material.dart';
import 'package:flutter_app/bootstrap/helpers.dart';
import 'package:hexcolor/hexcolor.dart';
class PrimaryButton extends StatelessWidget {
@ -29,8 +30,8 @@ class PrimaryButton extends StatelessWidget {
textStyle: Theme.of(context)
.textTheme
.button
.copyWith(fontSize: 16, fontWeight: FontWeight.bold, color: Colors.white),
bgColor: HexColor("#529cda"),
.copyWith(fontSize: 16, fontWeight: FontWeight.bold, color: ThemeColor.get(context).buttonPrimaryContent),
bgColor: ThemeColor.get(context).buttonBackground,
);
}

View File

@ -1,7 +1,7 @@
# Official WooSignal App Template for WooCommerce
# Label StoreMax
# Version: 5.5.1
# Version: 5.5.2
# Author: Anthony Gordon
# Homepage: https://woosignal.com
# Documentation: https://woosignal.com/docs/app/label-storemax

View File

@ -4,7 +4,7 @@
# WooCommerce App: Label StoreMax
### Label StoreMax - v5.5.1
### Label StoreMax - v5.5.2
[Official WooSignal WooCommerce App](https://woosignal.com)