Merge pull request #27 from woosignal/master

v5.6.2 - updates
This commit is contained in:
Anthony Gordon 2022-01-07 20:24:03 +00:00 committed by GitHub
commit 1f50ff1ac8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,7 @@
## [5.6.2] - 2022-01-07 ## [5.6.2] - 2022-01-07
* Fix null return in CheckoutShippingTypeWidget * Fix null return in CheckoutShippingTypeWidget
* Add resizeToAvoidBottomInset: false to notic and compo themes
## [5.6.1] - 2022-01-05 ## [5.6.1] - 2022-01-05

View File

@ -58,6 +58,7 @@ class CcompoThemeWidgetState extends State<CompoThemeWidget> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
body: activeWidget, body: activeWidget,
resizeToAvoidBottomInset: false,
bottomNavigationBar: allNavWidgets == null bottomNavigationBar: allNavWidgets == null
? AppLoaderWidget() ? AppLoaderWidget()
: BottomNavigationBar( : BottomNavigationBar(

View File

@ -161,7 +161,7 @@ class _NoticHomeWidgetState extends State<NoticHomeWidget> {
} else if (mode == LoadStatus.canLoading) { } else if (mode == LoadStatus.canLoading) {
body = Text(trans("release to load more")); body = Text(trans("release to load more"));
} else { } else {
body = Text(trans("No more products")); return Container();
} }
return Container( return Container(
height: 55.0, height: 55.0,

View File

@ -58,6 +58,7 @@ class _NoticThemeWidgetState extends State<NoticThemeWidget> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
body: activeWidget, body: activeWidget,
resizeToAvoidBottomInset: false,
bottomNavigationBar: allNavWidgets == null bottomNavigationBar: allNavWidgets == null
? AppLoaderWidget() : BottomNavigationBar( ? AppLoaderWidget() : BottomNavigationBar(
onTap: (currentIndex) => onTap: (currentIndex) =>