Compare commits
30 Commits
master
...
845a380fbf
| Author | SHA1 | Date | |
|---|---|---|---|
| 845a380fbf | |||
| 90531e6e4e | |||
| 6cb9e82e61 | |||
| 51c4ae4f02 | |||
| a376faf0ce | |||
| cebc46bbb3 | |||
| 8b546214eb | |||
| 285c4ca3f2 | |||
| 0842c479c7 | |||
| e3d3bcfb68 | |||
| 1a0ecee501 | |||
| 5e65118ab4 | |||
| 9c5e06884d | |||
| 3d31cd7737 | |||
| 7609601cd0 | |||
| 9981f1ef0f | |||
| 588c026f27 | |||
| 0478ff6f47 | |||
| 49d21cc34b | |||
| a3ef313e7c | |||
| 17dff72655 | |||
| fb7ff84087 | |||
| b1aefa9f11 | |||
| edcc157dbb | |||
| 9e8cba5069 | |||
| 5892830499 | |||
| 5e8a8699ac | |||
| 94193658f1 | |||
| e6517402d3 | |||
| cb6ce05059 |
@@ -1,31 +0,0 @@
|
||||
Extension Discovery Cache
|
||||
=========================
|
||||
|
||||
This folder is used by `package:extension_discovery` to cache lists of
|
||||
packages that contains extensions for other packages.
|
||||
|
||||
DO NOT USE THIS FOLDER
|
||||
----------------------
|
||||
|
||||
* Do not read (or rely) the contents of this folder.
|
||||
* Do write to this folder.
|
||||
|
||||
If you're interested in the lists of extensions stored in this folder use the
|
||||
API offered by package `extension_discovery` to get this information.
|
||||
|
||||
If this package doesn't work for your use-case, then don't try to read the
|
||||
contents of this folder. It may change, and will not remain stable.
|
||||
|
||||
Use package `extension_discovery`
|
||||
---------------------------------
|
||||
|
||||
If you want to access information from this folder.
|
||||
|
||||
Feel free to delete this folder
|
||||
-------------------------------
|
||||
|
||||
Files in this folder act as a cache, and the cache is discarded if the files
|
||||
are older than the modification time of `.dart_tool/package_config.json`.
|
||||
|
||||
Hence, it should never be necessary to clear this cache manually, if you find a
|
||||
need to do please file a bug.
|
||||
@@ -1 +0,0 @@
|
||||
{"version":2,"entries":[{"package":"remever","rootUri":"../","packageUri":"lib/"},{"package":"flutter_gen","rootUri":"flutter_gen/","packageUri":"flutter_gen/"}]}
|
||||
@@ -6,12 +6,23 @@
|
||||
// @dart = 3.7
|
||||
|
||||
import 'dart:io'; // flutter_ignore: dart_io_import.
|
||||
import 'package:file_picker/file_picker.dart';
|
||||
import 'package:path_provider_android/path_provider_android.dart';
|
||||
import 'package:file_picker/file_picker.dart';
|
||||
import 'package:path_provider_foundation/path_provider_foundation.dart';
|
||||
import 'package:file_picker/file_picker.dart';
|
||||
import 'package:package_info_plus/package_info_plus.dart';
|
||||
import 'package:path_provider_linux/path_provider_linux.dart';
|
||||
import 'package:share_plus/share_plus.dart';
|
||||
import 'package:url_launcher_linux/url_launcher_linux.dart';
|
||||
import 'package:file_picker/file_picker.dart';
|
||||
import 'package:path_provider_foundation/path_provider_foundation.dart';
|
||||
import 'package:file_picker/file_picker.dart';
|
||||
import 'package:flutter_secure_storage_windows/flutter_secure_storage_windows.dart';
|
||||
import 'package:package_info_plus/package_info_plus.dart';
|
||||
import 'package:path_provider_windows/path_provider_windows.dart';
|
||||
import 'package:share_plus/share_plus.dart';
|
||||
import 'package:url_launcher_windows/url_launcher_windows.dart';
|
||||
|
||||
@pragma('vm:entry-point')
|
||||
class _PluginRegistrant {
|
||||
@@ -19,6 +30,15 @@ class _PluginRegistrant {
|
||||
@pragma('vm:entry-point')
|
||||
static void register() {
|
||||
if (Platform.isAndroid) {
|
||||
try {
|
||||
FilePickerIO.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`file_picker` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
PathProviderAndroid.registerWith();
|
||||
} catch (err) {
|
||||
@@ -29,6 +49,15 @@ class _PluginRegistrant {
|
||||
}
|
||||
|
||||
} else if (Platform.isIOS) {
|
||||
try {
|
||||
FilePickerIO.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`file_picker` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
PathProviderFoundation.registerWith();
|
||||
} catch (err) {
|
||||
@@ -39,6 +68,24 @@ class _PluginRegistrant {
|
||||
}
|
||||
|
||||
} else if (Platform.isLinux) {
|
||||
try {
|
||||
FilePickerLinux.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`file_picker` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
PackageInfoPlusLinuxPlugin.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`package_info_plus` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
PathProviderLinux.registerWith();
|
||||
} catch (err) {
|
||||
@@ -48,7 +95,34 @@ class _PluginRegistrant {
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
SharePlusLinuxPlugin.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`share_plus` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
UrlLauncherLinux.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`url_launcher_linux` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
} else if (Platform.isMacOS) {
|
||||
try {
|
||||
FilePickerMacOS.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`file_picker` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
PathProviderFoundation.registerWith();
|
||||
} catch (err) {
|
||||
@@ -59,6 +133,15 @@ class _PluginRegistrant {
|
||||
}
|
||||
|
||||
} else if (Platform.isWindows) {
|
||||
try {
|
||||
FilePickerWindows.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`file_picker` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
FlutterSecureStorageWindows.registerWith();
|
||||
} catch (err) {
|
||||
@@ -68,6 +151,15 @@ class _PluginRegistrant {
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
PackageInfoPlusWindowsPlugin.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`package_info_plus` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
PathProviderWindows.registerWith();
|
||||
} catch (err) {
|
||||
@@ -77,6 +169,24 @@ class _PluginRegistrant {
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
SharePlusWindowsPlugin.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`share_plus` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
UrlLauncherWindows.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`url_launcher_windows` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
/Users/vitalijnecitajlo/work/my/new\ remover/.dart_tool/flutter_build/f8aeafefd67128b8dbf5f95a00355084/dart_build_result.json:
|
||||
@@ -1 +0,0 @@
|
||||
{"inputs":["/Users/vitalijnecitajlo/fvm/versions/3.29.0/packages/flutter_tools/lib/src/build_system/targets/native_assets.dart","/Users/vitalijnecitajlo/work/my/new remover/.dart_tool/package_config_subset"],"outputs":["/Users/vitalijnecitajlo/work/my/new remover/.dart_tool/flutter_build/f8aeafefd67128b8dbf5f95a00355084/dart_build_result.json","/Users/vitalijnecitajlo/work/my/new remover/.dart_tool/flutter_build/f8aeafefd67128b8dbf5f95a00355084/dart_build_result.json"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"dependencies":[],"code_assets":[]}
|
||||
@@ -1 +0,0 @@
|
||||
{"inputs":["/Users/vitalijnecitajlo/work/my/new remover/.dart_tool/package_config_subset"],"outputs":["/Users/vitalijnecitajlo/work/my/new remover/.dart_tool/flutter_build/dart_plugin_registrant.dart"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"inputs":[],"outputs":[]}
|
||||
@@ -1 +0,0 @@
|
||||
/Users/vitalijnecitajlo/work/my/new\ remover/.dart_tool/flutter_build/f8aeafefd67128b8dbf5f95a00355084/native_assets.json:
|
||||
@@ -1 +0,0 @@
|
||||
{"inputs":["/Users/vitalijnecitajlo/fvm/versions/3.29.0/packages/flutter_tools/lib/src/build_system/targets/native_assets.dart","/Users/vitalijnecitajlo/work/my/new remover/.dart_tool/package_config_subset"],"outputs":["/Users/vitalijnecitajlo/work/my/new remover/.dart_tool/flutter_build/f8aeafefd67128b8dbf5f95a00355084/native_assets.json","/Users/vitalijnecitajlo/work/my/new remover/.dart_tool/flutter_build/f8aeafefd67128b8dbf5f95a00355084/native_assets.json"]}
|
||||
@@ -1 +0,0 @@
|
||||
{"format-version":[1,0,0],"native-assets":{}}
|
||||
@@ -6,26 +6,30 @@ analyzer
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/analyzer-7.3.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/analyzer-7.3.0/lib/
|
||||
ansicolor
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/ansicolor-2.0.3/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/ansicolor-2.0.3/lib/
|
||||
archive
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/archive-4.0.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/archive-4.0.2/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/archive-4.0.5/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/archive-4.0.5/lib/
|
||||
args
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/args-2.6.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/args-2.6.0/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/args-2.7.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/args-2.7.0/lib/
|
||||
async
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/async-2.12.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/async-2.12.0/lib/
|
||||
auto_route
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/auto_route-9.3.0+1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/auto_route-9.3.0+1/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/auto_route-10.0.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/auto_route-10.0.1/lib/
|
||||
auto_route_generator
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/auto_route_generator-9.3.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/auto_route_generator-9.3.1/lib/
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/auto_route_generator-10.0.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/auto_route_generator-10.0.1/lib/
|
||||
bloc
|
||||
2.14
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/bloc-9.0.0/
|
||||
@@ -68,16 +72,24 @@ file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/built_collection-5.1.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib/
|
||||
built_value
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/built_value-8.9.3/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/built_value-8.9.3/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/built_value-8.9.5/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/built_value-8.9.5/lib/
|
||||
characters
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/characters-1.4.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/characters-1.4.0/lib/
|
||||
charcode
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/charcode-1.4.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/charcode-1.4.0/lib/
|
||||
checked_yaml
|
||||
2.19
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/lib/
|
||||
cli_util
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/cli_util-0.4.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/cli_util-0.4.2/lib/
|
||||
clock
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/clock-1.1.2/
|
||||
@@ -102,6 +114,10 @@ coverage
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/coverage-1.11.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/coverage-1.11.1/lib/
|
||||
cross_file
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/cross_file-0.3.4+2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/cross_file-0.3.4+2/lib/
|
||||
crypto
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/crypto-3.0.6/
|
||||
@@ -114,10 +130,6 @@ cupertino_icons
|
||||
3.1
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/cupertino_icons-1.0.8/lib/
|
||||
curl_logger_dio_interceptor
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/curl_logger_dio_interceptor-1.0.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/curl_logger_dio_interceptor-1.0.0/lib/
|
||||
dart_style
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dart_style-3.0.1/
|
||||
@@ -126,6 +138,10 @@ dartx
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dartx-1.2.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dartx-1.2.0/lib/
|
||||
db_viewer
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/db_viewer-1.1.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/db_viewer-1.1.0/lib/
|
||||
dio
|
||||
2.18
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dio-5.8.0+1/
|
||||
@@ -136,8 +152,20 @@ file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dio_smart_retry-7.0.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dio_smart_retry-7.0.1/lib/
|
||||
dio_web_adapter
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dio_web_adapter-2.1.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dio_web_adapter-2.1.0/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dio_web_adapter-2.1.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dio_web_adapter-2.1.1/lib/
|
||||
drift
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/drift-2.26.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/drift-2.26.0/lib/
|
||||
drift_db_viewer
|
||||
2.13
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/drift_db_viewer-2.1.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/drift_db_viewer-2.1.0/lib/
|
||||
drift_dev
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/drift_dev-2.26.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/drift_dev-2.26.0/lib/
|
||||
event_bus
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/event_bus-2.0.1/
|
||||
@@ -147,37 +175,53 @@ fake_async
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fake_async-1.3.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fake_async-1.3.2/lib/
|
||||
ffi
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/ffi-2.1.3/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/ffi-2.1.3/lib/
|
||||
3.7
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/ffi-2.1.4/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/ffi-2.1.4/lib/
|
||||
file
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/file-7.0.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/file-7.0.1/lib/
|
||||
file_picker
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/file_picker-10.0.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/file_picker-10.0.0/lib/
|
||||
fixnum
|
||||
3.1
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fixnum-1.1.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fixnum-1.1.1/lib/
|
||||
flutter_bloc
|
||||
2.14
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_bloc-9.0.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_bloc-9.0.0/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_bloc-9.1.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_bloc-9.1.0/lib/
|
||||
flutter_displaymode
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_displaymode-0.6.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_displaymode-0.6.0/lib/
|
||||
flutter_gen_core
|
||||
2.17
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_core-5.9.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_core-5.9.0/lib/
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_core-5.10.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_core-5.10.0/lib/
|
||||
flutter_gen_runner
|
||||
2.17
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_runner-5.9.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_runner-5.9.0/lib/
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_runner-5.10.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_runner-5.10.0/lib/
|
||||
flutter_keyboard_size
|
||||
2.18
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_keyboard_size-1.0.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_keyboard_size-1.0.1/lib/
|
||||
flutter_launcher_icons
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_launcher_icons-0.14.3/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_launcher_icons-0.14.3/lib/
|
||||
flutter_lints
|
||||
3.5
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_lints-5.0.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_lints-5.0.0/lib/
|
||||
flutter_plugin_android_lifecycle
|
||||
3.6
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.27/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.27/lib/
|
||||
flutter_screenutil
|
||||
2.17
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_screenutil-5.9.3/
|
||||
@@ -206,6 +250,14 @@ flutter_secure_storage_windows
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_secure_storage_windows-3.1.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_secure_storage_windows-3.1.2/lib/
|
||||
flutter_slidable
|
||||
3.6
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_slidable-4.0.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_slidable-4.0.0/lib/
|
||||
fluttertoast
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fluttertoast-8.2.12/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fluttertoast-8.2.12/lib/
|
||||
fps_widget
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fps_widget-1.0.1+2/
|
||||
@@ -246,6 +298,10 @@ graphs
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/graphs-2.3.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/graphs-2.3.2/lib/
|
||||
group_button
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/group_button-5.3.4/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/group_button-5.3.4/lib/
|
||||
hashcodes
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/hashcodes-2.0.0/
|
||||
@@ -274,6 +330,22 @@ http_parser
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/http_parser-4.1.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/http_parser-4.1.2/lib/
|
||||
image
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image-4.5.4/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image-4.5.4/lib/
|
||||
image_cropper
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image_cropper-9.1.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image_cropper-9.1.0/lib/
|
||||
image_cropper_for_web
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image_cropper_for_web-6.1.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image_cropper_for_web-6.1.0/lib/
|
||||
image_cropper_platform_interface
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image_cropper_platform_interface-7.1.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image_cropper_platform_interface-7.1.0/lib/
|
||||
image_size_getter
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image_size_getter-2.4.0/
|
||||
@@ -364,8 +436,16 @@ file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/node_preamble-2.0.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/node_preamble-2.0.2/lib/
|
||||
package_config
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/package_config-2.1.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/package_config-2.1.1/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/package_config-2.2.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/package_config-2.2.0/lib/
|
||||
package_info_plus
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/lib/
|
||||
package_info_plus_platform_interface
|
||||
2.18
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/package_info_plus_platform_interface-3.2.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/package_info_plus_platform_interface-3.2.0/lib/
|
||||
path
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path-1.9.1/
|
||||
@@ -379,9 +459,9 @@ path_provider
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider-2.1.5/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider-2.1.5/lib/
|
||||
path_provider_android
|
||||
3.5
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_android-2.2.15/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_android-2.2.15/lib/
|
||||
3.6
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_android-2.2.16/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_android-2.2.16/lib/
|
||||
path_provider_foundation
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.1/
|
||||
@@ -422,30 +502,34 @@ posix
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/posix-6.0.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/posix-6.0.1/lib/
|
||||
pretty_dio_logger
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/pretty_dio_logger-1.4.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/pretty_dio_logger-1.4.0/lib/
|
||||
provider
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/provider-6.1.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/provider-6.1.2/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/provider-6.1.4/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/provider-6.1.4/lib/
|
||||
pub_semver
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/pub_semver-2.1.5/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/pub_semver-2.1.5/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/pub_semver-2.2.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/pub_semver-2.2.0/lib/
|
||||
pubspec_parse
|
||||
3.6
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/pubspec_parse-1.5.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/pubspec_parse-1.5.0/lib/
|
||||
readmore
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/readmore-3.0.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/readmore-3.0.0/lib/
|
||||
recase
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/recase-4.1.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/recase-4.1.0/lib/
|
||||
settings_ui
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/settings_ui-2.0.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/settings_ui-2.0.2/lib/
|
||||
share_plus
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/share_plus-10.1.4/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/share_plus-10.1.4/lib/
|
||||
share_plus_platform_interface
|
||||
2.18
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/share_plus_platform_interface-5.0.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/share_plus_platform_interface-5.0.2/lib/
|
||||
shelf
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/shelf-1.4.2/
|
||||
@@ -464,16 +548,16 @@ file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/shelf_web_socket-3.0.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/shelf_web_socket-3.0.0/lib/
|
||||
slang
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang-4.4.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang-4.4.1/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang-4.6.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang-4.6.0/lib/
|
||||
slang_build_runner
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang_build_runner-4.4.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang_build_runner-4.4.2/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang_build_runner-4.6.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang_build_runner-4.6.0/lib/
|
||||
slang_flutter
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang_flutter-4.4.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang_flutter-4.4.0/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang_flutter-4.6.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang_flutter-4.6.0/lib/
|
||||
source_gen
|
||||
3.6
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/source_gen-2.0.0/
|
||||
@@ -494,6 +578,22 @@ source_span
|
||||
3.1
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/source_span-1.10.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/source_span-1.10.1/lib/
|
||||
sprintf
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sprintf-7.0.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sprintf-7.0.0/lib/
|
||||
sqlite3
|
||||
3.5
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sqlite3-2.7.5/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sqlite3-2.7.5/lib/
|
||||
sqlite3_flutter_libs
|
||||
2.12
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sqlite3_flutter_libs-0.5.32/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sqlite3_flutter_libs-0.5.32/lib/
|
||||
sqlparser
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sqlparser-0.41.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sqlparser-0.41.0/lib/
|
||||
stack_trace
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/stack_trace-1.12.1/
|
||||
@@ -510,6 +610,26 @@ string_scanner
|
||||
3.1
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/string_scanner-1.4.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/string_scanner-1.4.1/lib/
|
||||
talker
|
||||
2.17
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/talker-4.7.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/talker-4.7.1/lib/
|
||||
talker_bloc_logger
|
||||
2.15
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/talker_bloc_logger-4.7.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/talker_bloc_logger-4.7.1/lib/
|
||||
talker_dio_logger
|
||||
2.15
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/talker_dio_logger-4.7.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/talker_dio_logger-4.7.1/lib/
|
||||
talker_flutter
|
||||
3.6
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/talker_flutter-4.7.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/talker_flutter-4.7.1/lib/
|
||||
talker_logger
|
||||
2.15
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/talker_logger-4.7.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/talker_logger-4.7.1/lib/
|
||||
term_glyph
|
||||
3.1
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/term_glyph-1.2.2/
|
||||
@@ -542,6 +662,26 @@ typed_data
|
||||
3.5
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/typed_data-1.4.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/typed_data-1.4.0/lib/
|
||||
url_launcher_linux
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.1/lib/
|
||||
url_launcher_platform_interface
|
||||
3.1
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_platform_interface-2.3.2/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_platform_interface-2.3.2/lib/
|
||||
url_launcher_web
|
||||
3.6
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.0/lib/
|
||||
url_launcher_windows
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.4/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.4/lib/
|
||||
uuid
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/uuid-4.5.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/uuid-4.5.1/lib/
|
||||
vector_graphics_codec
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/vector_graphics_codec-1.1.13/
|
||||
@@ -564,8 +704,8 @@ file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/watcher-1.1.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/watcher-1.1.1/lib/
|
||||
web
|
||||
3.4
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/web-1.1.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/web-1.1.0/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/web-1.1.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/web-1.1.1/lib/
|
||||
web_socket
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/web_socket-0.1.6/
|
||||
@@ -579,9 +719,9 @@ webkit_inspection_protocol
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1/lib/
|
||||
win32
|
||||
3.5
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/win32-5.10.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/win32-5.10.1/lib/
|
||||
3.7
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/win32-5.12.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/win32-5.12.0/lib/
|
||||
xdg_directories
|
||||
3.3
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/xdg_directories-1.1.0/
|
||||
@@ -596,8 +736,8 @@ file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/yaml-3.1.3/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/yaml-3.1.3/lib/
|
||||
yaml_writer
|
||||
3.0
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/yaml_writer-2.0.1/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/yaml_writer-2.0.1/lib/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/yaml_writer-2.1.0/
|
||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/yaml_writer-2.1.0/lib/
|
||||
sky_engine
|
||||
3.7
|
||||
file:///Users/vitalijnecitajlo/fvm/versions/3.29.0/bin/cache/pkg/sky_engine/
|
||||
|
||||
@@ -1,12 +1,23 @@
|
||||
# This is a generated file; do not edit or check into version control.
|
||||
file_picker=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/file_picker-10.0.0/
|
||||
flutter_displaymode=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_displaymode-0.6.0/
|
||||
flutter_plugin_android_lifecycle=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.27/
|
||||
flutter_secure_storage=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_secure_storage-9.2.4/
|
||||
flutter_secure_storage_linux=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_secure_storage_linux-1.2.2/
|
||||
flutter_secure_storage_macos=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_secure_storage_macos-3.1.3/
|
||||
flutter_secure_storage_web=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_secure_storage_web-1.2.1/
|
||||
flutter_secure_storage_windows=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_secure_storage_windows-3.1.2/
|
||||
fluttertoast=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fluttertoast-8.2.12/
|
||||
image_cropper=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image_cropper-9.1.0/
|
||||
image_cropper_for_web=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image_cropper_for_web-6.1.0/
|
||||
package_info_plus=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/package_info_plus-8.3.0/
|
||||
path_provider=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider-2.1.5/
|
||||
path_provider_android=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_android-2.2.15/
|
||||
path_provider_android=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_android-2.2.16/
|
||||
path_provider_foundation=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.1/
|
||||
path_provider_linux=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/
|
||||
path_provider_windows=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/
|
||||
share_plus=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/share_plus-10.1.4/
|
||||
sqlite3_flutter_libs=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sqlite3_flutter_libs-0.5.32/
|
||||
url_launcher_linux=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.1/
|
||||
url_launcher_web=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.0/
|
||||
url_launcher_windows=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.4/
|
||||
|
||||
49
.gitignore
vendored
@@ -1,3 +1,52 @@
|
||||
# Miscellaneous
|
||||
*.class
|
||||
*.log
|
||||
*.pyc
|
||||
*.swp
|
||||
.DS_Store
|
||||
.atom/
|
||||
.buildlog/
|
||||
.history
|
||||
.svn/
|
||||
|
||||
# IntelliJ related
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
.idea/
|
||||
|
||||
# The .vscode folder contains launch configuration and tasks you configure in
|
||||
# VS Code which you may wish to be included in version control, so this line
|
||||
# is commented out by default.
|
||||
#.vscode/
|
||||
|
||||
# Flutter/Dart/Pub related
|
||||
**/doc/api/
|
||||
**/ios/Flutter/.last_build_id
|
||||
.dart_tool/
|
||||
.flutter-plugins
|
||||
.flutter-plugins-dependencies
|
||||
.packages
|
||||
.pub-cache/
|
||||
.pub/
|
||||
/build/
|
||||
|
||||
# Web related
|
||||
lib/generated_plugin_registrant.dart
|
||||
|
||||
# Symbolication related
|
||||
app.*.symbols
|
||||
|
||||
# Obfuscation related
|
||||
app.*.map.json
|
||||
|
||||
# Android Studio will place build artifacts here
|
||||
/android/app/debug
|
||||
/android/app/profile
|
||||
/android/app/release
|
||||
|
||||
lib/env.dart
|
||||
untranslated.json
|
||||
|
||||
# FVM Version Cache
|
||||
.fvm/
|
||||
10
Makefile
@@ -1,4 +1,4 @@
|
||||
PROJECT_NAME=JY
|
||||
PROJECT_NAME=remever
|
||||
|
||||
.PHONY: clean
|
||||
|
||||
@@ -8,10 +8,6 @@ clean:
|
||||
codegen: clean
|
||||
fvm flutter pub run build_runner build --delete-conflicting-outputs
|
||||
|
||||
watchgen: clean
|
||||
fvm flutter pub run build_runner watch --delete-conflicting-outputs
|
||||
|
||||
|
||||
iosPod:
|
||||
cd ios && rm -rf Podfile.lock Pods Runner.xcworkspace && fvm flutter clean && fvm flutter pub get && pod install
|
||||
|
||||
@@ -31,8 +27,8 @@ macosPodUpdate:
|
||||
cd macos && pod install --repo-update
|
||||
|
||||
androidBuild: clean
|
||||
fvm flutter build apk --split-per-abi
|
||||
mv `pwd`/build/app/outputs/flutter-apk/app-armeabi-v7a-release.apk /tmp/$(PROJECT_NAME)-$(env)-$(ver).apk
|
||||
fvm flutter build apk
|
||||
mv `pwd`/build/app/outputs/flutter-apk/app-release.apk /tmp/$(PROJECT_NAME)-$(env)-$(ver).apk
|
||||
echo /tmp/$(PROJECT_NAME)-$(env)-$(ver).apk
|
||||
open /tmp
|
||||
|
||||
|
||||
@@ -6,8 +6,8 @@ plugins {
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "ru.remever.mobile.remever"
|
||||
compileSdk = flutter.compileSdkVersion
|
||||
namespace = "ru.remever.mobile"
|
||||
compileSdk = 36
|
||||
ndkVersion = "27.0.12077973"
|
||||
|
||||
compileOptions {
|
||||
@@ -21,11 +21,11 @@ android {
|
||||
|
||||
defaultConfig {
|
||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||
applicationId = "ru.remever.mobile.remever"
|
||||
applicationId = "ru.remever.mobile"
|
||||
// You can update the following values to match your application needs.
|
||||
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||
minSdk = flutter.minSdkVersion
|
||||
targetSdk = flutter.targetSdkVersion
|
||||
minSdk = 21
|
||||
targetSdk = 36
|
||||
versionCode = flutter.versionCode
|
||||
versionName = flutter.versionName
|
||||
}
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
|
||||
<application
|
||||
android:label="remever"
|
||||
android:name="${applicationName}"
|
||||
android:icon="@mipmap/ic_launcher">
|
||||
android:icon="@mipmap/launcher_icon">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:exported="true"
|
||||
@@ -20,6 +23,7 @@
|
||||
android:name="io.flutter.embedding.android.NormalTheme"
|
||||
android:resource="@style/NormalTheme"
|
||||
/>
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
@@ -30,6 +34,15 @@
|
||||
<meta-data
|
||||
android:name="flutterEmbedding"
|
||||
android:value="2" />
|
||||
|
||||
<meta-data
|
||||
android:name="io.flutter.embedding.android.EnableImpeller"
|
||||
android:value="false" />
|
||||
|
||||
<activity
|
||||
android:name="com.yalantis.ucrop.UCropActivity"
|
||||
android:screenOrientation="portrait"
|
||||
android:theme="@style/Ucrop.CropTheme" />
|
||||
</application>
|
||||
<!-- Required to query activities that can process text, see:
|
||||
https://developer.android.com/training/package-visibility and
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package ru.remever.mobile.remever
|
||||
package ru.remever.mobile
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 17 KiB |
14
android/app/src/main/res/mipmap-anydpi-v26/launcher_icon.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@color/ic_launcher_background"/>
|
||||
<foreground>
|
||||
<inset
|
||||
android:drawable="@drawable/ic_launcher_foreground"
|
||||
android:inset="16%" />
|
||||
</foreground>
|
||||
<monochrome>
|
||||
<inset
|
||||
android:drawable="@drawable/ic_launcher_monochrome"
|
||||
android:inset="16%" />
|
||||
</monochrome>
|
||||
</adaptive-icon>
|
||||
BIN
android/app/src/main/res/mipmap-hdpi/launcher_icon.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/launcher_icon.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/launcher_icon.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
6
android/app/src/main/res/values-v35/styles.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="Ucrop.CropTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
||||
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
|
||||
</style>
|
||||
</resources>
|
||||
4
android/app/src/main/res/values/colors.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="ic_launcher_background">#ffffff</color>
|
||||
</resources>
|
||||
@@ -1,6 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode
|
||||
setting is off -->
|
||||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||
<!-- Show a splash screen on the activity. Automatically removed when
|
||||
the Flutter engine draws its first frame -->
|
||||
@@ -15,4 +16,8 @@
|
||||
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
</style>
|
||||
</resources>
|
||||
|
||||
<style name="Ucrop.CropTheme" parent="Theme.AppCompat.Light.NoActionBar" /> <!--add
|
||||
this line-->
|
||||
|
||||
</resources>
|
||||
BIN
assets/.DS_Store
vendored
BIN
assets/icons/settings_about.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/icons/settings_exit.png
Normal file
|
After Width: | Height: | Size: 746 B |
BIN
assets/icons/settings_faq.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/icons/settings_mail.png
Normal file
|
After Width: | Height: | Size: 811 B |
BIN
assets/icons/settings_name.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
assets/icons/settings_notification.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/icons/settings_phone.png
Normal file
|
After Width: | Height: | Size: 759 B |
BIN
assets/icons/settings_profile.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
assets/icons/settings_share.png
Normal file
|
After Width: | Height: | Size: 954 B |
BIN
assets/icons/settings_trash.png
Normal file
|
After Width: | Height: | Size: 639 B |
BIN
assets/icons/stats_best.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
assets/icons/stats_card.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
assets/icons/stats_down.png
Normal file
|
After Width: | Height: | Size: 397 B |
BIN
assets/icons/stats_repeat.png
Normal file
|
After Width: | Height: | Size: 764 B |
BIN
assets/icons/stats_time.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/icons/stats_up.png
Normal file
|
After Width: | Height: | Size: 429 B |
BIN
assets/images/app_icon.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
assets/images/app_icon_monochrome.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
assets/images/training_empty.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
20
build.yaml
@@ -10,6 +10,26 @@ targets:
|
||||
- lib/$lib$
|
||||
- $package$
|
||||
builders:
|
||||
drift_dev:
|
||||
options: &options
|
||||
apply_converters_on_variables: true
|
||||
generate_values_in_copy_with: true
|
||||
scoped_dart_components: true
|
||||
store_date_time_values_as_text: true
|
||||
# named_parameters: true
|
||||
sql:
|
||||
dialect: sqlite
|
||||
options:
|
||||
version: "3.39"
|
||||
modules:
|
||||
- fts5
|
||||
- json1
|
||||
- math
|
||||
|
||||
drift_dev:preparing_builder:
|
||||
enabled: true
|
||||
|
||||
|
||||
# injectable
|
||||
injectable_generator:injectable_builder:
|
||||
options:
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
2ebc20c2b41ee7a5ad26c926d44dbef6
|
||||
@@ -1 +0,0 @@
|
||||
{"version":2,"files":[]}
|
||||
@@ -1 +0,0 @@
|
||||
{"inputs":[],"outputs":[]}
|
||||
@@ -1 +0,0 @@
|
||||
[]
|
||||
@@ -1 +0,0 @@
|
||||
{}
|
||||
@@ -1,2 +0,0 @@
|
||||
#- File Locator -
|
||||
listingFile=../../../../outputs/apk/debug/output-metadata.json
|
||||
@@ -1,2 +0,0 @@
|
||||
appMetadataVersion=1.1
|
||||
androidGradlePluginVersion=8.7.0
|
||||
@@ -1 +0,0 @@
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
{"assets/.DS_Store":["assets/.DS_Store"],"assets/icons/.DS_Store":["assets/icons/.DS_Store"],"assets/icons/back.png":["assets/icons/back.png"],"assets/icons/call.png":["assets/icons/call.png"],"assets/icons/mail.png":["assets/icons/mail.png"],"assets/icons/type=arrow_down.png":["assets/icons/type=arrow_down.png"],"assets/icons/type=back.png":["assets/icons/type=back.png"],"assets/icons/type=bold.png":["assets/icons/type=bold.png"],"assets/icons/type=capsLock.png":["assets/icons/type=capsLock.png"],"assets/icons/type=cards.png":["assets/icons/type=cards.png"],"assets/icons/type=check.png":["assets/icons/type=check.png"],"assets/icons/type=check_round.png":["assets/icons/type=check_round.png"],"assets/icons/type=checkbox_empty_.png":["assets/icons/type=checkbox_empty_.png"],"assets/icons/type=checkbox_fill.png":["assets/icons/type=checkbox_fill.png"],"assets/icons/type=close.png":["assets/icons/type=close.png"],"assets/icons/type=collection.png":["assets/icons/type=collection.png"],"assets/icons/type=copy.png":["assets/icons/type=copy.png"],"assets/icons/type=create card.png":["assets/icons/type=create card.png"],"assets/icons/type=danger.png":["assets/icons/type=danger.png"],"assets/icons/type=description.png":["assets/icons/type=description.png"],"assets/icons/type=download.png":["assets/icons/type=download.png"],"assets/icons/type=edit.png":["assets/icons/type=edit.png"],"assets/icons/type=flip.png":["assets/icons/type=flip.png"],"assets/icons/type=flip_2.png":["assets/icons/type=flip_2.png"],"assets/icons/type=heading.png":["assets/icons/type=heading.png"],"assets/icons/type=hide.png":["assets/icons/type=hide.png"],"assets/icons/type=img.png":["assets/icons/type=img.png"],"assets/icons/type=in focus.png":["assets/icons/type=in focus.png"],"assets/icons/type=info.png":["assets/icons/type=info.png"],"assets/icons/type=learn.png":["assets/icons/type=learn.png"],"assets/icons/type=like.png":["assets/icons/type=like.png"],"assets/icons/type=like_18_18.png":["assets/icons/type=like_18_18.png"],"assets/icons/type=like_fill.png":["assets/icons/type=like_fill.png"],"assets/icons/type=markers.png":["assets/icons/type=markers.png"],"assets/icons/type=menu_vertical.png":["assets/icons/type=menu_vertical.png"],"assets/icons/type=minus.png":["assets/icons/type=minus.png"],"assets/icons/type=move.png":["assets/icons/type=move.png"],"assets/icons/type=number_markers.png":["assets/icons/type=number_markers.png"],"assets/icons/type=paste.png":["assets/icons/type=paste.png"],"assets/icons/type=photo.png":["assets/icons/type=photo.png"],"assets/icons/type=plus.png":["assets/icons/type=plus.png"],"assets/icons/type=public.png":["assets/icons/type=public.png"],"assets/icons/type=remember.png":["assets/icons/type=remember.png"],"assets/icons/type=search.png":["assets/icons/type=search.png"],"assets/icons/type=setting.png":["assets/icons/type=setting.png"],"assets/icons/type=share.png":["assets/icons/type=share.png"],"assets/icons/type=show.png":["assets/icons/type=show.png"],"assets/icons/type=sort.png":["assets/icons/type=sort.png"],"assets/icons/type=sort_A.png":["assets/icons/type=sort_A.png"],"assets/icons/type=sort_Z.png":["assets/icons/type=sort_Z.png"],"assets/icons/type=sort_down.png":["assets/icons/type=sort_down.png"],"assets/icons/type=sort_up.png":["assets/icons/type=sort_up.png"],"assets/icons/type=stat.png":["assets/icons/type=stat.png"],"assets/icons/type=trash.png":["assets/icons/type=trash.png"],"assets/images/.DS_Store":["assets/images/.DS_Store"],"assets/images/.gitkeep":["assets/images/.gitkeep"],"assets/images/Property Apple.png":["assets/images/Property Apple.png"],"assets/images/Property Google disk.png":["assets/images/Property Google disk.png"],"assets/images/Property Google.png":["assets/images/Property Google.png"],"assets/images/Property Mail.ru.png":["assets/images/Property Mail.ru.png"],"assets/images/Property TG.png":["assets/images/Property TG.png"],"assets/images/Property VK.png":["assets/images/Property VK.png"],"assets/images/Property YA.png":["assets/images/Property YA.png"],"assets/images/img.png":["assets/images/img.png"],"assets/images/img_card.png":["assets/images/img_card.png"],"assets/images/logo.png":["assets/images/logo.png"],"assets/images/no_data.png":["assets/images/no_data.png"],"assets/images/quote.png":["assets/images/quote.png"],"assets/svg/.gitkeep":["assets/svg/.gitkeep"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]}
|
||||
@@ -1 +0,0 @@
|
||||
[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}]
|
||||
@@ -1 +0,0 @@
|
||||
{"format-version":[1,0,0],"native-assets":{}}
|
||||
|
Before Width: | Height: | Size: 278 B |
|
Before Width: | Height: | Size: 634 B |
|
Before Width: | Height: | Size: 563 B |
|
Before Width: | Height: | Size: 648 B |
|
Before Width: | Height: | Size: 714 B |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 384 B |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 847 B |
|
Before Width: | Height: | Size: 970 B |
|
Before Width: | Height: | Size: 605 B |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |