commit
3c1f02320b
@ -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
|
## [5.7.2] - 2022-02-12
|
||||||
|
|
||||||
* Button UI loading state added
|
* Button UI loading state added
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
# WooCommerce App: Label StoreMax
|
# WooCommerce App: Label StoreMax
|
||||||
|
|
||||||
### Label StoreMax - v5.7.2
|
### Label StoreMax - v5.7.3
|
||||||
|
|
||||||
|
|
||||||
[Official WooSignal WooCommerce App](https://woosignal.com)
|
[Official WooSignal WooCommerce App](https://woosignal.com)
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.5.0'
|
ext.kotlin_version = '1.6.10'
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
|
|||||||
@ -164,9 +164,13 @@ class _ProductDetailUpsellWidgetState extends State<ProductDetailUpsellWidget> {
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
didFinish: () => setState(() {
|
didFinish: () {
|
||||||
|
if (mounted) {
|
||||||
|
setState(() {
|
||||||
_isLoading = false;
|
_isLoading = false;
|
||||||
}),
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
productIds: widget.productIds);
|
productIds: widget.productIds);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
# Official WooSignal App Template for WooCommerce
|
# Official WooSignal App Template for WooCommerce
|
||||||
|
|
||||||
# Label StoreMax
|
# Label StoreMax
|
||||||
# Version: 5.7.2
|
# Version: 5.7.3
|
||||||
# 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