v5.7.3 - updates
This commit is contained in:
parent
e492dfb83b
commit
bf14ab3901
@ -1,3 +1,9 @@
|
||||
## [5.7.3] - 2022-02-21
|
||||
|
||||
* Fix builds for Flutter 2.10.2
|
||||
* Fix setState for product upsells
|
||||
* ext.kotlin_version version bump
|
||||
|
||||
## [5.7.2] - 2022-02-12
|
||||
|
||||
* Button UI loading state added
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
|
||||
# WooCommerce App: Label StoreMax
|
||||
|
||||
### Label StoreMax - v5.7.2
|
||||
### Label StoreMax - v5.7.3
|
||||
|
||||
|
||||
[Official WooSignal WooCommerce App](https://woosignal.com)
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
buildscript {
|
||||
ext.kotlin_version = '1.5.0'
|
||||
ext.kotlin_version = '1.6.10'
|
||||
repositories {
|
||||
google()
|
||||
jcenter()
|
||||
|
||||
@ -164,9 +164,13 @@ class _ProductDetailUpsellWidgetState extends State<ProductDetailUpsellWidget> {
|
||||
}
|
||||
return true;
|
||||
},
|
||||
didFinish: () => setState(() {
|
||||
didFinish: () {
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
_isLoading = false;
|
||||
}),
|
||||
});
|
||||
}
|
||||
},
|
||||
productIds: widget.productIds);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
# Official WooSignal App Template for WooCommerce
|
||||
|
||||
# Label StoreMax
|
||||
# Version: 5.7.2
|
||||
# Version: 5.7.3
|
||||
# Author: Anthony Gordon
|
||||
# Homepage: https://woosignal.com
|
||||
# Documentation: https://woosignal.com/docs/app/label-storemax
|
||||
|
||||
Loading…
Reference in New Issue
Block a user