Browse Source

safety

master
fmk 3 years ago
parent
commit
2084910d99
  1. 1
      android/app/build.gradle
  2. BIN
      android/app/libs/BaiduLBS_Android.jar
  3. BIN
      android/app/libs/arm64-v8a/libAMapSDK_MAP_v7_9_1.so
  4. BIN
      android/app/libs/armeabi-v7a/libAMapSDK_MAP_v7_9_1.so
  5. 5
      lib/home/home_page.dart

1
android/app/build.gradle

@ -111,7 +111,6 @@ android {
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
ndk {
/// .so
abiFilters 'armeabi-v7a', 'arm64-v8a'

BIN
android/app/libs/BaiduLBS_Android.jar

Binary file not shown.

BIN
android/app/libs/arm64-v8a/libAMapSDK_MAP_v7_9_1.so

Binary file not shown.

BIN
android/app/libs/armeabi-v7a/libAMapSDK_MAP_v7_9_1.so

Binary file not shown.

5
lib/home/home_page.dart

@ -592,7 +592,7 @@ class _HomePage extends State<HomePage> with AutomaticKeepAliveClientMixin {
style: TextStyle(
color: Color(0xFF727272),
fontSize: 12.sp,
fontWeight: MyFontWeight.regular),
fontWeight: MyFontWeight.regular,),
),
],
),
@ -607,6 +607,7 @@ class _HomePage extends State<HomePage> with AutomaticKeepAliveClientMixin {
physics: BouncingScrollPhysics(),
viewportFraction: 0.32,
scale: 0.7,
loop: true,
itemBuilder: (context, position) {
return Container(
// height: 60.h,
@ -634,7 +635,7 @@ class _HomePage extends State<HomePage> with AutomaticKeepAliveClientMixin {
);
},
itemCount:
(brandData != null && brandData.length > 0) ? brandData.length : 0,
(brandData != null && brandData.length > 0) ? brandData.length : 1,
),
// child: ListView.builder(
// padding: EdgeInsets.only(left: 10.w, right: 10.w),

Loading…
Cancel
Save