mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-28 17:19:27 +01:00
chore: upgrade to Flutter 3.24.5
At the time of writing the latest Flutter version.
This commit is contained in:
parent
fc0daacfc0
commit
686e0a2dba
2
.fvmrc
2
.fvmrc
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"flutter": "3.7.11",
|
"flutter": "3.24.5",
|
||||||
"flavors": {}
|
"flavors": {}
|
||||||
}
|
}
|
||||||
@ -1,3 +1,9 @@
|
|||||||
|
plugins {
|
||||||
|
id "com.android.application"
|
||||||
|
id "kotlin-android"
|
||||||
|
id "dev.flutter.flutter-gradle-plugin"
|
||||||
|
}
|
||||||
|
|
||||||
def localProperties = new Properties()
|
def localProperties = new Properties()
|
||||||
def localPropertiesFile = rootProject.file('local.properties')
|
def localPropertiesFile = rootProject.file('local.properties')
|
||||||
if (localPropertiesFile.exists()) {
|
if (localPropertiesFile.exists()) {
|
||||||
@ -6,11 +12,6 @@ if (localPropertiesFile.exists()) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def flutterRoot = localProperties.getProperty('flutter.sdk')
|
|
||||||
if (flutterRoot == null) {
|
|
||||||
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
|
||||||
}
|
|
||||||
|
|
||||||
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
||||||
if (flutterVersionCode == null) {
|
if (flutterVersionCode == null) {
|
||||||
flutterVersionCode = '1'
|
flutterVersionCode = '1'
|
||||||
@ -21,10 +22,6 @@ if (flutterVersionName == null) {
|
|||||||
flutterVersionName = '1.0'
|
flutterVersionName = '1.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'com.android.application'
|
|
||||||
apply plugin: 'kotlin-android'
|
|
||||||
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
|
||||||
|
|
||||||
def keystoreProperties = new Properties()
|
def keystoreProperties = new Properties()
|
||||||
def keystorePropertiesFile = rootProject.file('key.properties')
|
def keystorePropertiesFile = rootProject.file('key.properties')
|
||||||
if (keystorePropertiesFile.exists()) {
|
if (keystorePropertiesFile.exists()) {
|
||||||
@ -53,7 +50,7 @@ android {
|
|||||||
applicationId "com.subtracks2"
|
applicationId "com.subtracks2"
|
||||||
// You can update the following values to match your application needs.
|
// You can update the following values to match your application needs.
|
||||||
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
|
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
|
||||||
minSdkVersion 19
|
minSdkVersion flutter.minSdkVersion
|
||||||
targetSdkVersion flutter.targetSdkVersion
|
targetSdkVersion flutter.targetSdkVersion
|
||||||
versionCode flutterVersionCode.toInteger()
|
versionCode flutterVersionCode.toInteger()
|
||||||
versionName flutterVersionName
|
versionName flutterVersionName
|
||||||
@ -82,7 +79,3 @@ android {
|
|||||||
flutter {
|
flutter {
|
||||||
source '../..'
|
source '../..'
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
||||||
}
|
|
||||||
|
|||||||
@ -1,25 +0,0 @@
|
|||||||
// Generated file.
|
|
||||||
//
|
|
||||||
// If you wish to remove Flutter's multidex support, delete this entire file.
|
|
||||||
//
|
|
||||||
// Modifications to this file should be done in a copy under a different name
|
|
||||||
// as this file may be regenerated.
|
|
||||||
|
|
||||||
package io.flutter.app;
|
|
||||||
|
|
||||||
import android.app.Application;
|
|
||||||
import android.content.Context;
|
|
||||||
import androidx.annotation.CallSuper;
|
|
||||||
import androidx.multidex.MultiDex;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Extension of {@link android.app.Application}, adding multidex support.
|
|
||||||
*/
|
|
||||||
public class FlutterMultiDexApplication extends Application {
|
|
||||||
@Override
|
|
||||||
@CallSuper
|
|
||||||
protected void attachBaseContext(Context base) {
|
|
||||||
super.attachBaseContext(base);
|
|
||||||
MultiDex.install(this);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,16 +1,3 @@
|
|||||||
buildscript {
|
|
||||||
ext.kotlin_version = '1.7.10'
|
|
||||||
repositories {
|
|
||||||
google()
|
|
||||||
mavenCentral()
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
classpath 'com.android.tools.build:gradle:7.2.0'
|
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
@ -26,6 +13,6 @@ subprojects {
|
|||||||
project.evaluationDependsOn(':app')
|
project.evaluationDependsOn(':app')
|
||||||
}
|
}
|
||||||
|
|
||||||
task clean(type: Delete) {
|
tasks.register("clean", Delete) {
|
||||||
delete rootProject.buildDir
|
delete rootProject.buildDir
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,11 +1,25 @@
|
|||||||
include ':app'
|
pluginManagement {
|
||||||
|
def flutterSdkPath = {
|
||||||
|
def properties = new Properties()
|
||||||
|
file("local.properties").withInputStream { properties.load(it) }
|
||||||
|
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||||
|
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
||||||
|
return flutterSdkPath
|
||||||
|
}()
|
||||||
|
|
||||||
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
|
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
||||||
def properties = new Properties()
|
|
||||||
|
|
||||||
assert localPropertiesFile.exists()
|
repositories {
|
||||||
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
gradlePluginPortal()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
plugins {
|
||||||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||||
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
|
id "com.android.application" version "7.2.0" apply false
|
||||||
|
id "org.jetbrains.kotlin.android" version "2.0.21" apply false
|
||||||
|
}
|
||||||
|
|
||||||
|
include ":app"
|
||||||
@ -25,7 +25,7 @@ Future<T?> showContextMenu<T>({
|
|||||||
required WidgetBuilder builder,
|
required WidgetBuilder builder,
|
||||||
}) {
|
}) {
|
||||||
return showModalBottomSheet<T>(
|
return showModalBottomSheet<T>(
|
||||||
backgroundColor: ref.read(baseThemeProvider).theme.colorScheme.background,
|
backgroundColor: ref.read(baseThemeProvider).theme.colorScheme.surface,
|
||||||
useRootNavigator: true,
|
useRootNavigator: true,
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
context: context,
|
context: context,
|
||||||
|
|||||||
@ -112,9 +112,9 @@ List<DownloadAction> useListDownloadActions({
|
|||||||
DownloadAction cancel() {
|
DownloadAction cancel() {
|
||||||
return DownloadAction(
|
return DownloadAction(
|
||||||
type: DownloadActionType.cancel,
|
type: DownloadActionType.cancel,
|
||||||
iconBuilder: (context) => Stack(
|
iconBuilder: (context) => const Stack(
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
children: const [
|
children: [
|
||||||
Icon(Icons.cancel_rounded),
|
Icon(Icons.cancel_rounded),
|
||||||
SizedBox(
|
SizedBox(
|
||||||
height: 32,
|
height: 32,
|
||||||
|
|||||||
@ -213,7 +213,7 @@ class CardClip extends StatelessWidget {
|
|||||||
final cardShape = Theme.of(context).cardTheme.shape;
|
final cardShape = Theme.of(context).cardTheme.shape;
|
||||||
return ClipRRect(
|
return ClipRRect(
|
||||||
borderRadius:
|
borderRadius:
|
||||||
cardShape is RoundedRectangleBorder ? cardShape.borderRadius : null,
|
cardShape is RoundedRectangleBorder ? cardShape.borderRadius : BorderRadius.zero,
|
||||||
child: !square
|
child: !square
|
||||||
? child
|
? child
|
||||||
: AspectRatio(
|
: AspectRatio(
|
||||||
|
|||||||
@ -127,6 +127,7 @@ class SyncAllRefresh extends HookConsumerWidget {
|
|||||||
try {
|
try {
|
||||||
await ref.read(syncServiceProvider.notifier).syncAll();
|
await ref.read(syncServiceProvider.notifier).syncAll();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
if (!context.mounted) return;
|
||||||
showErrorSnackbar(context, e.toString());
|
showErrorSnackbar(context, e.toString());
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -30,13 +30,13 @@ class NowPlayingBar extends HookConsumerWidget {
|
|||||||
elevation: 3,
|
elevation: 3,
|
||||||
color: colors?.darkBackground,
|
color: colors?.darkBackground,
|
||||||
// surfaceTintColor: theme?.colorScheme.background,
|
// surfaceTintColor: theme?.colorScheme.background,
|
||||||
child: Column(
|
child: const Column(
|
||||||
children: [
|
children: [
|
||||||
SizedBox(
|
SizedBox(
|
||||||
height: 70,
|
height: 70,
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisSize: MainAxisSize.max,
|
mainAxisSize: MainAxisSize.max,
|
||||||
children: const [
|
children: [
|
||||||
Padding(
|
Padding(
|
||||||
padding: EdgeInsets.all(10),
|
padding: EdgeInsets.all(10),
|
||||||
child: _ArtImage(),
|
child: _ArtImage(),
|
||||||
@ -54,7 +54,7 @@ class NowPlayingBar extends HookConsumerWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const _ProgressBar(),
|
_ProgressBar(),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -173,7 +173,7 @@ class PlayPauseButton extends HookConsumerWidget {
|
|||||||
width: size / 3,
|
width: size / 3,
|
||||||
child: CircularProgressIndicator(
|
child: CircularProgressIndicator(
|
||||||
strokeWidth: size / 16,
|
strokeWidth: size / 16,
|
||||||
color: Theme.of(context).colorScheme.background,
|
color: Theme.of(context).colorScheme.surface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -195,7 +195,7 @@ class PlayPauseButton extends HookConsumerWidget {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
icon: icon,
|
icon: icon,
|
||||||
color: Theme.of(context).colorScheme.onBackground,
|
color: Theme.of(context).colorScheme.surface,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -111,13 +111,13 @@ class OfflineIndicator extends HookConsumerWidget {
|
|||||||
),
|
),
|
||||||
child: FilledButton.tonal(
|
child: FilledButton.tonal(
|
||||||
style: const ButtonStyle(
|
style: const ButtonStyle(
|
||||||
padding: MaterialStatePropertyAll<EdgeInsetsGeometry>(
|
padding: WidgetStatePropertyAll<EdgeInsetsGeometry>(
|
||||||
EdgeInsets.zero,
|
EdgeInsets.zero,
|
||||||
),
|
),
|
||||||
fixedSize: MaterialStatePropertyAll<Size>(
|
fixedSize: WidgetStatePropertyAll<Size>(
|
||||||
Size(42, 42),
|
Size(42, 42),
|
||||||
),
|
),
|
||||||
minimumSize: MaterialStatePropertyAll<Size>(
|
minimumSize: WidgetStatePropertyAll<Size>(
|
||||||
Size(42, 42),
|
Size(42, 42),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@ -55,13 +55,13 @@ class NowPlayingPage extends HookConsumerWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
body: Stack(
|
body: const Stack(
|
||||||
children: [
|
children: [
|
||||||
const MediaItemGradient(),
|
MediaItemGradient(),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
|
padding: EdgeInsets.symmetric(horizontal: 8, vertical: 8),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: const [
|
children: [
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: EdgeInsets.symmetric(horizontal: 16),
|
padding: EdgeInsets.symmetric(horizontal: 16),
|
||||||
@ -229,8 +229,8 @@ class _Progress extends HookConsumerWidget {
|
|||||||
value: changing.value ? changeValue.value : position.toDouble(),
|
value: changing.value ? changeValue.value : position.toDouble(),
|
||||||
min: 0,
|
min: 0,
|
||||||
max: max(duration.toDouble(), position.toDouble()),
|
max: max(duration.toDouble(), position.toDouble()),
|
||||||
thumbColor: colors?.theme.colorScheme.onBackground,
|
thumbColor: colors?.theme.colorScheme.surface,
|
||||||
activeColor: colors?.theme.colorScheme.onBackground,
|
activeColor: colors?.theme.colorScheme.surface,
|
||||||
inactiveColor: colors?.theme.colorScheme.surface,
|
inactiveColor: colors?.theme.colorScheme.surface,
|
||||||
onChanged: (value) {
|
onChanged: (value) {
|
||||||
changeValue.value = value;
|
changeValue.value = value;
|
||||||
@ -354,7 +354,7 @@ class _Controls extends HookConsumerWidget {
|
|||||||
final audio = ref.watch(audioControlProvider);
|
final audio = ref.watch(audioControlProvider);
|
||||||
|
|
||||||
return IconTheme(
|
return IconTheme(
|
||||||
data: IconThemeData(color: base.theme.colorScheme.onBackground),
|
data: IconThemeData(color: base.theme.colorScheme.surface),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
SizedBox(
|
SizedBox(
|
||||||
|
|||||||
@ -191,7 +191,7 @@ class _ShareLogsButton extends StatelessWidget {
|
|||||||
final files = await logFiles();
|
final files = await logFiles();
|
||||||
if (files.isEmpty) return;
|
if (files.isEmpty) return;
|
||||||
|
|
||||||
// ignore: use_build_context_synchronously
|
if (!context.mounted) return;
|
||||||
final value = await showDialog<String>(
|
final value = await showDialog<String>(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => MultipleChoiceDialog<String>(
|
builder: (context) => MultipleChoiceDialog<String>(
|
||||||
|
|||||||
@ -76,8 +76,8 @@ class SourcePage extends HookConsumerWidget {
|
|||||||
onChanged: (value) => forcePlaintextPassword.value = value,
|
onChanged: (value) => forcePlaintextPassword.value = value,
|
||||||
);
|
);
|
||||||
|
|
||||||
return WillPopScope(
|
return PopScope(
|
||||||
onWillPop: () async => !isSaving.value && !isDeleting.value,
|
canPop: !isSaving.value && !isDeleting.value,
|
||||||
child: Scaffold(
|
child: Scaffold(
|
||||||
appBar: AppBar(),
|
appBar: AppBar(),
|
||||||
floatingActionButton: Row(
|
floatingActionButton: Row(
|
||||||
@ -164,6 +164,7 @@ class SourcePage extends HookConsumerWidget {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
} catch (e, st) {
|
} catch (e, st) {
|
||||||
|
if (!context.mounted) return;
|
||||||
showErrorSnackbar(context, e.toString());
|
showErrorSnackbar(context, e.toString());
|
||||||
log.severe('Saving source', e, st);
|
log.severe('Saving source', e, st);
|
||||||
error = true;
|
error = true;
|
||||||
|
|||||||
@ -534,7 +534,7 @@ class DownloadService extends _$DownloadService {
|
|||||||
|
|
||||||
_port.asyncMap((dynamic data) async {
|
_port.asyncMap((dynamic data) async {
|
||||||
final taskId = (data as List<dynamic>)[0] as String;
|
final taskId = (data as List<dynamic>)[0] as String;
|
||||||
final status = DownloadTaskStatus(data[1] as int);
|
final status = DownloadTaskStatus.fromInt(data[1] as int);
|
||||||
final progress = data[2] as int;
|
final progress = data[2] as int;
|
||||||
|
|
||||||
var download = state.downloads.firstWhereOrNull(
|
var download = state.downloads.firstWhereOrNull(
|
||||||
@ -579,11 +579,11 @@ class DownloadService extends _$DownloadService {
|
|||||||
@pragma('vm:entry-point')
|
@pragma('vm:entry-point')
|
||||||
static void downloadCallback(
|
static void downloadCallback(
|
||||||
String id,
|
String id,
|
||||||
DownloadTaskStatus status,
|
int status,
|
||||||
int progress,
|
int progress,
|
||||||
) {
|
) {
|
||||||
IsolateNameServer.lookupPortByName('downloader_send_port')?.send(
|
IsolateNameServer.lookupPortByName('downloader_send_port')?.send(
|
||||||
[id, status.value, progress],
|
[id, status, progress],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -144,7 +144,7 @@ class SubsonicSource implements MusicSource {
|
|||||||
return Uri.tryParse(res.xml
|
return Uri.tryParse(res.xml
|
||||||
.getElement('artistInfo2')
|
.getElement('artistInfo2')
|
||||||
?.getElement(thumbnail ? 'smallImageUrl' : 'largeImageUrl')
|
?.getElement(thumbnail ? 'smallImageUrl' : 'largeImageUrl')
|
||||||
?.text ??
|
?.value ??
|
||||||
'');
|
'');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -87,7 +87,6 @@ ColorTheme _colorTheme(_ColorThemeRef ref, Palette palette) {
|
|||||||
final colorScheme = ColorScheme.fromSeed(
|
final colorScheme = ColorScheme.fromSeed(
|
||||||
brightness: Brightness.dark,
|
brightness: Brightness.dark,
|
||||||
seedColor: background?.color ?? Colors.purple[800]!,
|
seedColor: background?.color ?? Colors.purple[800]!,
|
||||||
background: background?.color,
|
|
||||||
primaryContainer: primary?.color,
|
primaryContainer: primary?.color,
|
||||||
onPrimaryContainer: primary?.bodyTextColor,
|
onPrimaryContainer: primary?.bodyTextColor,
|
||||||
secondaryContainer: secondary?.color,
|
secondaryContainer: secondary?.color,
|
||||||
@ -96,8 +95,8 @@ ColorTheme _colorTheme(_ColorThemeRef ref, Palette palette) {
|
|||||||
surfaceTint: vibrant?.color,
|
surfaceTint: vibrant?.color,
|
||||||
);
|
);
|
||||||
|
|
||||||
final hsv = HSVColor.fromColor(colorScheme.background);
|
final hsv = HSVColor.fromColor(colorScheme.surface);
|
||||||
final hsl = HSLColor.fromColor(colorScheme.background);
|
final hsl = HSLColor.fromColor(colorScheme.surface);
|
||||||
|
|
||||||
return base.copyWith(
|
return base.copyWith(
|
||||||
theme: ThemeData(
|
theme: ThemeData(
|
||||||
@ -106,7 +105,7 @@ ColorTheme _colorTheme(_ColorThemeRef ref, Palette palette) {
|
|||||||
brightness: base.theme.brightness,
|
brightness: base.theme.brightness,
|
||||||
cardTheme: base.theme.cardTheme,
|
cardTheme: base.theme.cardTheme,
|
||||||
),
|
),
|
||||||
gradientHigh: colorScheme.background,
|
gradientHigh: colorScheme.surface,
|
||||||
darkBackground: hsv.withValue(kDarkBackgroundValue).toColor(),
|
darkBackground: hsv.withValue(kDarkBackgroundValue).toColor(),
|
||||||
darkerBackground: hsl.withLightness(kDarkerBackgroundLightness).toColor(),
|
darkerBackground: hsl.withLightness(kDarkerBackgroundLightness).toColor(),
|
||||||
onDarkerBackground:
|
onDarkerBackground:
|
||||||
@ -128,13 +127,13 @@ ColorTheme baseTheme(BaseThemeRef ref) {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
final hsv = HSVColor.fromColor(theme.colorScheme.background);
|
final hsv = HSVColor.fromColor(theme.colorScheme.surface);
|
||||||
final hsl = HSLColor.fromColor(theme.colorScheme.background);
|
final hsl = HSLColor.fromColor(theme.colorScheme.surface);
|
||||||
|
|
||||||
return ColorTheme(
|
return ColorTheme(
|
||||||
theme: theme,
|
theme: theme,
|
||||||
gradientHigh: theme.colorScheme.background,
|
gradientHigh: theme.colorScheme.surface,
|
||||||
gradientLow: HSLColor.fromColor(theme.colorScheme.background)
|
gradientLow: HSLColor.fromColor(theme.colorScheme.surface)
|
||||||
.withLightness(0.06)
|
.withLightness(0.06)
|
||||||
.toColor(),
|
.toColor(),
|
||||||
darkBackground: hsv.withValue(kDarkBackgroundValue).toColor(),
|
darkBackground: hsv.withValue(kDarkBackgroundValue).toColor(),
|
||||||
|
|||||||
632
pubspec.lock
632
pubspec.lock
File diff suppressed because it is too large
Load Diff
@ -7,7 +7,7 @@ publish_to: 'none'
|
|||||||
version: 2.0.0-alpha.3+12
|
version: 2.0.0-alpha.3+12
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.19.2 <3.0.0'
|
sdk: '>=3.0.0 <4.0.0'
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
@ -55,7 +55,7 @@ dependencies:
|
|||||||
synchronized: ^3.1.0
|
synchronized: ^3.1.0
|
||||||
flutter_keyboard_visibility: ^5.4.0
|
flutter_keyboard_visibility: ^5.4.0
|
||||||
connectivity_plus: ^3.0.4
|
connectivity_plus: ^3.0.4
|
||||||
package_info_plus: ^3.1.1
|
package_info_plus: ^8.1.1
|
||||||
url_launcher: ^6.1.10
|
url_launcher: ^6.1.10
|
||||||
logging: ^1.1.1
|
logging: ^1.1.1
|
||||||
share_plus: ^7.0.0
|
share_plus: ^7.0.0
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user