v5.6.2 - updates
This commit is contained in:
parent
9ad8910f4d
commit
82b3653c6d
@ -1,6 +1,7 @@
|
||||
## [5.6.2] - 2022-01-07
|
||||
|
||||
* Fix null return in CheckoutShippingTypeWidget
|
||||
* Add resizeToAvoidBottomInset: false to notic and compo theme
|
||||
|
||||
## [5.6.1] - 2022-01-05
|
||||
|
||||
|
||||
@ -58,6 +58,7 @@ class CcompoThemeWidgetState extends State<CompoThemeWidget> {
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
body: activeWidget,
|
||||
resizeToAvoidBottomInset: false,
|
||||
bottomNavigationBar: allNavWidgets == null
|
||||
? AppLoaderWidget()
|
||||
: BottomNavigationBar(
|
||||
|
||||
@ -42,7 +42,6 @@ class _HomeDrawerWidgetState extends State<HomeDrawerWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
print(widget.wooSignalApp.wishlistEnabled);
|
||||
bool isDark = (Theme.of(context).brightness == Brightness.dark);
|
||||
return Drawer(
|
||||
child: Container(
|
||||
|
||||
@ -161,7 +161,7 @@ class _NoticHomeWidgetState extends State<NoticHomeWidget> {
|
||||
} else if (mode == LoadStatus.canLoading) {
|
||||
body = Text(trans("release to load more"));
|
||||
} else {
|
||||
body = Text(trans("No more products"));
|
||||
return Container();
|
||||
}
|
||||
return Container(
|
||||
height: 55.0,
|
||||
|
||||
@ -58,6 +58,7 @@ class _NoticThemeWidgetState extends State<NoticThemeWidget> {
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
body: activeWidget,
|
||||
resizeToAvoidBottomInset: false,
|
||||
bottomNavigationBar: allNavWidgets == null
|
||||
? AppLoaderWidget() : BottomNavigationBar(
|
||||
onTap: (currentIndex) =>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user