commit
1f50ff1ac8
@ -1,6 +1,7 @@
|
||||
## [5.6.2] - 2022-01-07
|
||||
|
||||
* Fix null return in CheckoutShippingTypeWidget
|
||||
* Add resizeToAvoidBottomInset: false to notic and compo themes
|
||||
|
||||
## [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(
|
||||
|
||||
@ -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