commit
1f50ff1ac8
@ -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
|
||||||
|
|
||||||
|
|||||||
@ -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(
|
||||||
|
|||||||
@ -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,
|
||||||
|
|||||||
@ -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) =>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user