v5.6.2 - updates

This commit is contained in:
Anthony 2022-01-07 20:21:56 +00:00
parent 9ad8910f4d
commit 82b3653c6d
5 changed files with 4 additions and 2 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 theme
## [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

@ -42,7 +42,6 @@ class _HomeDrawerWidgetState extends State<HomeDrawerWidget> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
print(widget.wooSignalApp.wishlistEnabled);
bool isDark = (Theme.of(context).brightness == Brightness.dark); bool isDark = (Theme.of(context).brightness == Brightness.dark);
return Drawer( return Drawer(
child: Container( child: Container(

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) =>