diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png index f4402513..04174a51 100644 Binary files a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-hdpi/icon_splash_logo.png b/android/app/src/main/res/mipmap-hdpi/icon_splash_logo.png index feea5fb0..8f503cc9 100644 Binary files a/android/app/src/main/res/mipmap-hdpi/icon_splash_logo.png and b/android/app/src/main/res/mipmap-hdpi/icon_splash_logo.png differ diff --git a/android/app/src/main/res/mipmap-ldpi/ic_launcher.png b/android/app/src/main/res/mipmap-ldpi/ic_launcher.png index edea12b7..5c73e64b 100644 Binary files a/android/app/src/main/res/mipmap-ldpi/ic_launcher.png and b/android/app/src/main/res/mipmap-ldpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png index 80eb124e..645c7900 100644 Binary files a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/icon_splash_logo.png b/android/app/src/main/res/mipmap-mdpi/icon_splash_logo.png index a1d09fbc..0c508691 100644 Binary files a/android/app/src/main/res/mipmap-mdpi/icon_splash_logo.png and b/android/app/src/main/res/mipmap-mdpi/icon_splash_logo.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png index 9d198a8b..c03318f2 100644 Binary files a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/icon_splash_logo.png b/android/app/src/main/res/mipmap-xhdpi/icon_splash_logo.png index c4ce0d6a..a594800e 100644 Binary files a/android/app/src/main/res/mipmap-xhdpi/icon_splash_logo.png and b/android/app/src/main/res/mipmap-xhdpi/icon_splash_logo.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png index 381b8975..d62fe537 100644 Binary files a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/icon_splash_logo.png b/android/app/src/main/res/mipmap-xxhdpi/icon_splash_logo.png index 303796fd..0b84cee9 100644 Binary files a/android/app/src/main/res/mipmap-xxhdpi/icon_splash_logo.png and b/android/app/src/main/res/mipmap-xxhdpi/icon_splash_logo.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png index e161dd70..659380c7 100644 Binary files a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/icon_splash_logo.png b/android/app/src/main/res/mipmap-xxxhdpi/icon_splash_logo.png index 87dc739a..2cc5ffb2 100644 Binary files a/android/app/src/main/res/mipmap-xxxhdpi/icon_splash_logo.png and b/android/app/src/main/res/mipmap-xxxhdpi/icon_splash_logo.png differ diff --git a/lib/view_widget/selector_store_dialog.dart b/lib/view_widget/selector_store_dialog.dart index be5eec08..87fc9cef 100644 --- a/lib/view_widget/selector_store_dialog.dart +++ b/lib/view_widget/selector_store_dialog.dart @@ -8,6 +8,8 @@ import 'package:huixiang/view_widget/border_text.dart'; import 'package:huixiang/view_widget/custom_image.dart'; import 'package:huixiang/view_widget/round_button.dart'; +import 'no_data_view.dart'; + class SelectorStoreWidget extends StatefulWidget { final List stores; @@ -91,7 +93,18 @@ class _SelectorStoreWidget extends State { ? (widget.stores.length > 4 ? 4 : widget.stores.length) : 0) * 60.h, - child: ListView.builder( + child: (widget.stores == null || widget.stores.length == 0) + ? Padding(padding:EdgeInsets.symmetric(horizontal: 16.w), + child: Text( + "该优惠券未设置适用门店,适用情况请查看使用详情", + textAlign: TextAlign.center, + style: TextStyle( + fontWeight: MyFontWeight.regular, + fontSize: 14.sp, + color: Colors.black, + ), + ),) + : ListView.builder( physics: BouncingScrollPhysics(), itemBuilder: (context, position) { return GestureDetector( diff --git a/pubspec.yaml b/pubspec.yaml index eb1adf91..f7269004 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: 海峡姐妹. publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 3.2.20+63 +version: 3.2.22+65 environment: sdk: ">=2.7.0 <3.0.0"