From 764195f549f306cb62e3095b92f1b0ab5a0b71b7 Mon Sep 17 00:00:00 2001 From: Pav Soor <1pssoor@gmail.com> Date: Sat, 17 Jun 2023 12:10:44 +0100 Subject: [PATCH] Updated packages Updated scrollable positioned list and cupertino icons. Refactored some code for null-safety with Dart 3. --- example/android/app/build.gradle | 4 +- .../android/app/src/main/AndroidManifest.xml | 3 +- example/android/build.gradle | 4 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- example/lib/common/models.dart | 10 +- example/lib/common/utils.dart | 3 +- example/lib/main.dart | 2 +- example/lib/ui/car_models_page.dart | 2 - example/pubspec.lock | 149 +++++++++------- example/pubspec.yaml | 2 +- lib/src/index_bar.dart | 12 +- lib/src/suspension_view.dart | 2 +- pubspec.lock | 162 +++++++++++++----- pubspec.yaml | 4 +- 14 files changed, 228 insertions(+), 133 deletions(-) diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 7cc793e..a4e220c 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -25,7 +25,7 @@ apply plugin: 'com.android.application' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { - compileSdkVersion 28 + compileSdkVersion 31 lintOptions { disable 'InvalidPackage' @@ -35,7 +35,7 @@ android { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "club.flutterchina.azlistview_example" minSdkVersion 16 - targetSdkVersion 28 + targetSdkVersion 33 versionCode flutterVersionCode.toInteger() versionName flutterVersionName } diff --git a/example/android/app/src/main/AndroidManifest.xml b/example/android/app/src/main/AndroidManifest.xml index 66dc9fe..ad4de46 100644 --- a/example/android/app/src/main/AndroidManifest.xml +++ b/example/android/app/src/main/AndroidManifest.xml @@ -15,7 +15,8 @@ android:hardwareAccelerated="true" android:launchMode="singleTop" android:theme="@style/LaunchTheme" - android:windowSoftInputMode="adjustResize"> + android:windowSoftInputMode="adjustResize" + android:exported="true">