Skip to content

Commit 1f50ff1

Browse files
authored
Merge pull request #27 from woosignal/master
v5.6.2 - updates
2 parents 70ef29d + b15e8a1 commit 1f50ff1

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

LabelStoreMax/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## [5.6.2] - 2022-01-07
22

33
* Fix null return in CheckoutShippingTypeWidget
4+
* Add resizeToAvoidBottomInset: false to notic and compo themes
45

56
## [5.6.1] - 2022-01-05
67

LabelStoreMax/lib/resources/widgets/compo_theme_widget.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ class CcompoThemeWidgetState extends State<CompoThemeWidget> {
5858
Widget build(BuildContext context) {
5959
return Scaffold(
6060
body: activeWidget,
61+
resizeToAvoidBottomInset: false,
6162
bottomNavigationBar: allNavWidgets == null
6263
? AppLoaderWidget()
6364
: BottomNavigationBar(

LabelStoreMax/lib/resources/widgets/notic_home_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ class _NoticHomeWidgetState extends State<NoticHomeWidget> {
161161
} else if (mode == LoadStatus.canLoading) {
162162
body = Text(trans("release to load more"));
163163
} else {
164-
body = Text(trans("No more products"));
164+
return Container();
165165
}
166166
return Container(
167167
height: 55.0,

LabelStoreMax/lib/resources/widgets/notic_theme_widget.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ class _NoticThemeWidgetState extends State<NoticThemeWidget> {
5858
Widget build(BuildContext context) {
5959
return Scaffold(
6060
body: activeWidget,
61+
resizeToAvoidBottomInset: false,
6162
bottomNavigationBar: allNavWidgets == null
6263
? AppLoaderWidget() : BottomNavigationBar(
6364
onTap: (currentIndex) =>

0 commit comments

Comments
 (0)