Compare commits

...

16 Commits

Author SHA1 Message Date
7609601cd0 Merge pull request 'Пачка экранов и логики' (#3) from feature/collection into develop
Reviewed-on: https://git.dizoft.ru/Dimkov966/Remever/pulls/3
2025-04-02 23:13:10 +03:00
9981f1ef0f Доработка действий с билетом 2025-04-02 23:10:47 +03:00
588c026f27 Доработка действий с билетом 2025-04-02 23:04:15 +03:00
0478ff6f47 Доработка деталки коллекции 2025-04-02 22:22:52 +03:00
49d21cc34b Добавлен вывод деталки коллекции 2025-04-02 22:17:16 +03:00
a3ef313e7c Доработка создания карточки в коллекции 2025-04-02 21:52:44 +03:00
17dff72655 Создание карточки в коллекции + экран поиска коллекции 2025-04-02 21:40:31 +03:00
fb7ff84087 Правки + иконка 2025-04-01 22:38:36 +03:00
b1aefa9f11 Добавлено логирование 2025-04-01 20:26:22 +03:00
edcc157dbb Merge pull request 'feature/collection' (#2) from feature/collection into develop
Reviewed-on: https://git.dizoft.ru/Dimkov966/Remever/pulls/2
2025-04-01 20:11:56 +03:00
9e8cba5069 save 2025-04-01 20:10:36 +03:00
5892830499 Добавлено удаление коллекций 2025-03-25 21:36:00 +03:00
5e8a8699ac Merge pull request 'Добавление коллекций' (#1) from feature/collection into develop
Reviewed-on: https://git.dizoft.ru/Dimkov966/Remever/pulls/1
2025-03-25 21:00:05 +03:00
94193658f1 Создание коллекций 2025-03-25 20:57:00 +03:00
e6517402d3 Создание коллекций 2025-03-25 20:53:53 +03:00
cb6ce05059 Обновлен проект. Добавлена БД 2025-03-03 23:57:55 +03:00
985 changed files with 8216 additions and 9325 deletions

View File

@@ -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.

View File

@@ -1 +0,0 @@
{"version":2,"entries":[{"package":"remever","rootUri":"../","packageUri":"lib/"},{"package":"flutter_gen","rootUri":"flutter_gen/","packageUri":"flutter_gen/"}]}

View File

@@ -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'
);
}
}
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -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,10 @@ 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_size_getter
2.12
file:///Users/vitalijnecitajlo/.pub-cache/hosted/pub.dev/image_size_getter-2.4.0/
@@ -364,8 +424,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 +447,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 +490,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 +536,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 +566,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 +598,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 +650,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 +692,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 +707,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 +724,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/

View File

@@ -1,12 +1,21 @@
# 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/
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/

File diff suppressed because one or more lines are too long

49
.gitignore vendored
View File

@@ -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/

View File

@@ -2,7 +2,7 @@
<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 +20,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 +31,10 @@
<meta-data
android:name="flutterEmbedding"
android:value="2" />
<meta-data
android:name="io.flutter.embedding.android.EnableImpeller"
android:value="false" />
</application>
<!-- Required to query activities that can process text, see:
https://developer.android.com/training/package-visibility and

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View 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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#ffffff</color>
</resources>

BIN
assets/.DS_Store vendored

Binary file not shown.

BIN
assets/images/app_icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@@ -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:

View File

@@ -1 +0,0 @@
2ebc20c2b41ee7a5ad26c926d44dbef6

View File

@@ -1 +0,0 @@
{"version":2,"files":[]}

View File

@@ -1 +0,0 @@
{"inputs":[],"outputs":[]}

View File

@@ -1,2 +0,0 @@
#- File Locator -
listingFile=../../../../outputs/apk/debug/output-metadata.json

View File

@@ -1,2 +0,0 @@
appMetadataVersion=1.1
androidGradlePluginVersion=8.7.0

View File

@@ -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"]}

View File

@@ -1 +0,0 @@
[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}]

View File

@@ -1 +0,0 @@
{"format-version":[1,0,0],"native-assets":{}}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 278 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 563 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Some files were not shown because too many files have changed in this diff Show More