Compare commits
5 Commits
master
...
9e8cba5069
| Author | SHA1 | Date | |
|---|---|---|---|
| 9e8cba5069 | |||
| 5892830499 | |||
| 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
|
// @dart = 3.7
|
||||||
|
|
||||||
import 'dart:io'; // flutter_ignore: dart_io_import.
|
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: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: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: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: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: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: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')
|
@pragma('vm:entry-point')
|
||||||
class _PluginRegistrant {
|
class _PluginRegistrant {
|
||||||
@@ -19,6 +30,15 @@ class _PluginRegistrant {
|
|||||||
@pragma('vm:entry-point')
|
@pragma('vm:entry-point')
|
||||||
static void register() {
|
static void register() {
|
||||||
if (Platform.isAndroid) {
|
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 {
|
try {
|
||||||
PathProviderAndroid.registerWith();
|
PathProviderAndroid.registerWith();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
@@ -29,6 +49,15 @@ class _PluginRegistrant {
|
|||||||
}
|
}
|
||||||
|
|
||||||
} else if (Platform.isIOS) {
|
} 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 {
|
try {
|
||||||
PathProviderFoundation.registerWith();
|
PathProviderFoundation.registerWith();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
@@ -39,6 +68,24 @@ class _PluginRegistrant {
|
|||||||
}
|
}
|
||||||
|
|
||||||
} else if (Platform.isLinux) {
|
} 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 {
|
try {
|
||||||
PathProviderLinux.registerWith();
|
PathProviderLinux.registerWith();
|
||||||
} catch (err) {
|
} 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) {
|
} 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 {
|
try {
|
||||||
PathProviderFoundation.registerWith();
|
PathProviderFoundation.registerWith();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
@@ -59,6 +133,15 @@ class _PluginRegistrant {
|
|||||||
}
|
}
|
||||||
|
|
||||||
} else if (Platform.isWindows) {
|
} 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 {
|
try {
|
||||||
FlutterSecureStorageWindows.registerWith();
|
FlutterSecureStorageWindows.registerWith();
|
||||||
} catch (err) {
|
} 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 {
|
try {
|
||||||
PathProviderWindows.registerWith();
|
PathProviderWindows.registerWith();
|
||||||
} catch (err) {
|
} 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'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ 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/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/analyzer-7.3.0/lib/
|
||||||
archive
|
archive
|
||||||
3.0
|
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.4/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/archive-4.0.2/lib/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/archive-4.0.4/lib/
|
||||||
args
|
args
|
||||||
3.3
|
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/
|
||||||
@@ -20,12 +20,12 @@ 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/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/async-2.12.0/lib/
|
||||||
auto_route
|
auto_route
|
||||||
3.0
|
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-10.0.0/
|
||||||
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.0/lib/
|
||||||
auto_route_generator
|
auto_route_generator
|
||||||
3.3
|
3.4
|
||||||
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-10.0.1/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/auto_route_generator-9.3.1/lib/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/auto_route_generator-10.0.1/lib/
|
||||||
bloc
|
bloc
|
||||||
2.14
|
2.14
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/bloc-9.0.0/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/bloc-9.0.0/
|
||||||
@@ -68,16 +68,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/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/built_collection-5.1.1/lib/
|
||||||
built_value
|
built_value
|
||||||
3.0
|
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.4/
|
||||||
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.4/lib/
|
||||||
characters
|
characters
|
||||||
3.4
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/characters-1.4.0/lib/
|
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
|
checked_yaml
|
||||||
2.19
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/checked_yaml-2.0.3/lib/
|
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
|
clock
|
||||||
3.4
|
3.4
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/clock-1.1.2/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/clock-1.1.2/
|
||||||
@@ -102,6 +110,10 @@ coverage
|
|||||||
3.4
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/coverage-1.11.1/lib/
|
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
|
crypto
|
||||||
3.4
|
3.4
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/crypto-3.0.6/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/crypto-3.0.6/
|
||||||
@@ -126,6 +138,10 @@ dartx
|
|||||||
2.12
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dartx-1.2.0/lib/
|
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
|
dio
|
||||||
2.18
|
2.18
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dio-5.8.0+1/
|
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/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/dio_smart_retry-7.0.1/lib/
|
||||||
dio_web_adapter
|
dio_web_adapter
|
||||||
3.3
|
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.1/
|
||||||
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/lib/
|
||||||
|
drift
|
||||||
|
3.4
|
||||||
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/drift-2.25.1/
|
||||||
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/drift-2.25.1/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.25.2/
|
||||||
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/drift_dev-2.25.2/lib/
|
||||||
event_bus
|
event_bus
|
||||||
2.12
|
2.12
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/event_bus-2.0.1/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/event_bus-2.0.1/
|
||||||
@@ -147,37 +175,49 @@ 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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fake_async-1.3.2/lib/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fake_async-1.3.2/lib/
|
||||||
ffi
|
ffi
|
||||||
3.3
|
3.7
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/ffi-2.1.3/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/ffi-2.1.4/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/ffi-2.1.3/lib/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/ffi-2.1.4/lib/
|
||||||
file
|
file
|
||||||
3.0
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/file-7.0.1/lib/
|
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-9.2.1/
|
||||||
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/file_picker-9.2.1/lib/
|
||||||
fixnum
|
fixnum
|
||||||
3.1
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fixnum-1.1.1/lib/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fixnum-1.1.1/lib/
|
||||||
flutter_bloc
|
flutter_bloc
|
||||||
2.14
|
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.1.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/lib/
|
||||||
flutter_displaymode
|
flutter_displaymode
|
||||||
2.12
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_displaymode-0.6.0/lib/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_displaymode-0.6.0/lib/
|
||||||
flutter_gen_core
|
flutter_gen_core
|
||||||
2.17
|
3.0
|
||||||
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.10.0/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_core-5.9.0/lib/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_core-5.10.0/lib/
|
||||||
flutter_gen_runner
|
flutter_gen_runner
|
||||||
2.17
|
3.0
|
||||||
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.10.0/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_gen_runner-5.9.0/lib/
|
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_lints
|
flutter_lints
|
||||||
3.5
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_lints-5.0.0/lib/
|
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
|
flutter_screenutil
|
||||||
2.17
|
2.17
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_screenutil-5.9.3/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_screenutil-5.9.3/
|
||||||
@@ -206,6 +246,14 @@ flutter_secure_storage_windows
|
|||||||
2.12
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_secure_storage_windows-3.1.2/lib/
|
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
|
fps_widget
|
||||||
2.12
|
2.12
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fps_widget-1.0.1+2/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/fps_widget-1.0.1+2/
|
||||||
@@ -366,6 +414,14 @@ package_config
|
|||||||
3.4
|
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/
|
||||||
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.1.1/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
|
path
|
||||||
3.4
|
3.4
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path-1.9.1/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path-1.9.1/
|
||||||
@@ -438,6 +494,10 @@ pubspec_parse
|
|||||||
3.6
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/pubspec_parse-1.5.0/lib/
|
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
|
recase
|
||||||
2.12
|
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/
|
||||||
@@ -446,6 +506,14 @@ settings_ui
|
|||||||
2.12
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/settings_ui-2.0.2/lib/
|
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
|
shelf
|
||||||
3.4
|
3.4
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/shelf-1.4.2/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/shelf-1.4.2/
|
||||||
@@ -464,16 +532,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/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/shelf_web_socket-3.0.0/lib/
|
||||||
slang
|
slang
|
||||||
3.3
|
3.3
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang-4.4.1/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang-4.5.0/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang-4.4.1/lib/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/slang-4.5.0/lib/
|
||||||
slang_build_runner
|
slang_build_runner
|
||||||
3.3
|
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.5.0/
|
||||||
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.5.0/lib/
|
||||||
slang_flutter
|
slang_flutter
|
||||||
3.3
|
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.5.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.5.0/lib/
|
||||||
source_gen
|
source_gen
|
||||||
3.6
|
3.6
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/source_gen-2.0.0/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/source_gen-2.0.0/
|
||||||
@@ -494,6 +562,22 @@ source_span
|
|||||||
3.1
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/source_span-1.10.1/lib/
|
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.4/
|
||||||
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sqlite3-2.7.4/lib/
|
||||||
|
sqlite3_flutter_libs
|
||||||
|
2.12
|
||||||
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sqlite3_flutter_libs-0.5.31/
|
||||||
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/sqlite3_flutter_libs-0.5.31/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
|
stack_trace
|
||||||
3.4
|
3.4
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/stack_trace-1.12.1/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/stack_trace-1.12.1/
|
||||||
@@ -542,6 +626,26 @@ typed_data
|
|||||||
3.5
|
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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/typed_data-1.4.0/lib/
|
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
|
vector_graphics_codec
|
||||||
3.4
|
3.4
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/vector_graphics_codec-1.1.13/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/vector_graphics_codec-1.1.13/
|
||||||
@@ -564,8 +668,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/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/watcher-1.1.1/lib/
|
||||||
web
|
web
|
||||||
3.4
|
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.1/
|
||||||
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/lib/
|
||||||
web_socket
|
web_socket
|
||||||
3.3
|
3.3
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/web_socket-0.1.6/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/web_socket-0.1.6/
|
||||||
@@ -579,9 +683,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/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1/lib/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/webkit_inspection_protocol-1.2.1/lib/
|
||||||
win32
|
win32
|
||||||
3.5
|
3.7
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/win32-5.10.1/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/win32-5.11.0/
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/win32-5.10.1/lib/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/win32-5.11.0/lib/
|
||||||
xdg_directories
|
xdg_directories
|
||||||
3.3
|
3.3
|
||||||
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/xdg_directories-1.1.0/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/xdg_directories-1.1.0/
|
||||||
@@ -596,8 +700,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/
|
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/yaml-3.1.3/lib/
|
||||||
yaml_writer
|
yaml_writer
|
||||||
3.0
|
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.1.0/
|
||||||
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/lib/
|
||||||
sky_engine
|
sky_engine
|
||||||
3.7
|
3.7
|
||||||
file:///Users/vitalijnecitajlo/fvm/versions/3.29.0/bin/cache/pkg/sky_engine/
|
file:///Users/vitalijnecitajlo/fvm/versions/3.29.0/bin/cache/pkg/sky_engine/
|
||||||
|
|||||||
@@ -1,12 +1,21 @@
|
|||||||
# This is a generated file; do not edit or check into version control.
|
# This is a generated file; do not edit or check into version control.
|
||||||
|
file_picker=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/file_picker-9.2.1/
|
||||||
flutter_displaymode=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/flutter_displaymode-0.6.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=/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_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_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_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/
|
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/
|
||||||
|
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=/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.15/
|
||||||
path_provider_foundation=/Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/path_provider_foundation-2.4.1/
|
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_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/
|
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.31/
|
||||||
|
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 Version Cache
|
||||||
.fvm/
|
.fvm/
|
||||||
20
build.yaml
@@ -10,6 +10,26 @@ targets:
|
|||||||
- lib/$lib$
|
- lib/$lib$
|
||||||
- $package$
|
- $package$
|
||||||
builders:
|
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
|
||||||
injectable_generator:injectable_builder:
|
injectable_generator:injectable_builder:
|
||||||
options:
|
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 |
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 697 B |
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 663 B |
|
Before Width: | Height: | Size: 887 B |
|
Before Width: | Height: | Size: 958 B |
|
Before Width: | Height: | Size: 403 B |
|
Before Width: | Height: | Size: 298 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 436 B |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 838 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 820 B |
|
Before Width: | Height: | Size: 807 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 943 B |
|
Before Width: | Height: | Size: 324 B |
|
Before Width: | Height: | Size: 645 B |
|
Before Width: | Height: | Size: 712 B |
|
Before Width: | Height: | Size: 603 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 593 B |
|
Before Width: | Height: | Size: 478 B |
|
Before Width: | Height: | Size: 6.6 KiB |
|
Before Width: | Height: | Size: 7.7 KiB |
|
Before Width: | Height: | Size: 9.9 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 17 KiB |