novo projeto
This commit is contained in:
16
.dart_tool/dartpad/web_plugin_registrant.dart
Normal file
16
.dart_tool/dartpad/web_plugin_registrant.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
// Flutter web plugin registrant file.
|
||||
//
|
||||
// Generated file. Do not edit.
|
||||
//
|
||||
|
||||
// @dart = 2.13
|
||||
// ignore_for_file: type=lint
|
||||
|
||||
import 'package:shared_preferences_web/shared_preferences_web.dart';
|
||||
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
|
||||
|
||||
void registerPlugins([final Registrar? pluginRegistrar]) {
|
||||
final Registrar registrar = pluginRegistrar ?? webPluginRegistrar;
|
||||
SharedPreferencesPlugin.registerWith(registrar);
|
||||
registrar.registerMessageHandler();
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
{"inputs":["D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\.dart_tool\\package_config_subset"],"outputs":["D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]}
|
||||
@@ -0,0 +1 @@
|
||||
{"inputs":[],"outputs":[]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
["D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/desenvolvimento.png","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/homologacao.png","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/logoEduca.png","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/logoRKM.PNG","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/fonts/Nunito-Regular.ttf","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/line_icons/lib/assets/fonts/LineIcons.ttf","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders/ink_sparkle.frag","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","D:\\PROJETOS\\FLUTTER\\rkm_educa_prof_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z"]
|
||||
92
.dart_tool/flutter_build/dart_plugin_registrant.dart
Normal file
92
.dart_tool/flutter_build/dart_plugin_registrant.dart
Normal file
@@ -0,0 +1,92 @@
|
||||
//
|
||||
// Generated file. Do not edit.
|
||||
// This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`.
|
||||
//
|
||||
|
||||
// @dart = 3.1
|
||||
|
||||
import 'dart:io'; // flutter_ignore: dart_io_import.
|
||||
import 'package:shared_preferences_android/shared_preferences_android.dart';
|
||||
import 'package:shared_preferences_foundation/shared_preferences_foundation.dart';
|
||||
import 'package:path_provider_linux/path_provider_linux.dart';
|
||||
import 'package:shared_preferences_linux/shared_preferences_linux.dart';
|
||||
import 'package:shared_preferences_foundation/shared_preferences_foundation.dart';
|
||||
import 'package:path_provider_windows/path_provider_windows.dart';
|
||||
import 'package:shared_preferences_windows/shared_preferences_windows.dart';
|
||||
|
||||
@pragma('vm:entry-point')
|
||||
class _PluginRegistrant {
|
||||
|
||||
@pragma('vm:entry-point')
|
||||
static void register() {
|
||||
if (Platform.isAndroid) {
|
||||
try {
|
||||
SharedPreferencesAndroid.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`shared_preferences_android` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
} else if (Platform.isIOS) {
|
||||
try {
|
||||
SharedPreferencesFoundation.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`shared_preferences_foundation` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
} else if (Platform.isLinux) {
|
||||
try {
|
||||
PathProviderLinux.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`path_provider_linux` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
SharedPreferencesLinux.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`shared_preferences_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 {
|
||||
SharedPreferencesFoundation.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`shared_preferences_foundation` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
} else if (Platform.isWindows) {
|
||||
try {
|
||||
PathProviderWindows.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`path_provider_windows` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
SharedPreferencesWindows.registerWith();
|
||||
} catch (err) {
|
||||
print(
|
||||
'`shared_preferences_windows` threw an error: $err. '
|
||||
'The app may not function as expected until you remove this plugin from pubspec.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
350
.dart_tool/package_config.json
Normal file
350
.dart_tool/package_config.json
Normal file
@@ -0,0 +1,350 @@
|
||||
{
|
||||
"configVersion": 2,
|
||||
"packages": [
|
||||
{
|
||||
"name": "args",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "asn1lib",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/asn1lib-1.5.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "async",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "boolean_selector",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.17"
|
||||
},
|
||||
{
|
||||
"name": "brasil_fields",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/brasil_fields-1.14.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "characters",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "clock",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "collection",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "convert",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "crypto",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "cupertino_icons",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.6",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "encrypt",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/encrypt-5.0.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "fake_async",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "ffi",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.1.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "file",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "flutter",
|
||||
"rootUri": "file:///C:/src/flutter/packages/flutter",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "flutter_lints",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "flutter_localizations",
|
||||
"rootUri": "file:///C:/src/flutter/packages/flutter_localizations",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "flutter_test",
|
||||
"rootUri": "file:///C:/src/flutter/packages/flutter_test",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "flutter_web_plugins",
|
||||
"rootUri": "file:///C:/src/flutter/packages/flutter_web_plugins",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "gainer_crypto",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/gainer_crypto-0.0.6",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.17"
|
||||
},
|
||||
{
|
||||
"name": "http",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.1.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "http_parser",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "intl",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "js",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "line_icons",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/line_icons-2.0.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "lints",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "matcher",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "material_color_utilities",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.5.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.17"
|
||||
},
|
||||
{
|
||||
"name": "meta",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "path",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "path_provider_linux",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "path_provider_platform_interface",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "path_provider_windows",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.2.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "platform",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "plugin_platform_interface",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.6",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "pointycastle",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.14"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.2.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_android",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.2.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_foundation",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_foundation-2.3.4",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_linux",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.3.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_platform_interface",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.3.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_web",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.2.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "shared_preferences_windows",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.3.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "sky_engine",
|
||||
"rootUri": "file:///C:/src/flutter/bin/cache/pkg/sky_engine",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "source_span",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "stack_trace",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "stream_channel",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.14"
|
||||
},
|
||||
{
|
||||
"name": "string_scanner",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "term_glyph",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.12"
|
||||
},
|
||||
{
|
||||
"name": "test_api",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.6.0",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.18"
|
||||
},
|
||||
{
|
||||
"name": "typed_data",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.17"
|
||||
},
|
||||
{
|
||||
"name": "vector_math",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.14"
|
||||
},
|
||||
{
|
||||
"name": "web",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/web-0.1.4-beta",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.1"
|
||||
},
|
||||
{
|
||||
"name": "win32",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.0.9",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.0"
|
||||
},
|
||||
{
|
||||
"name": "xdg_directories",
|
||||
"rootUri": "file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.3",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.19"
|
||||
},
|
||||
{
|
||||
"name": "rkm_educa_prof_app",
|
||||
"rootUri": "../",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "3.1"
|
||||
}
|
||||
],
|
||||
"generated": "2023-11-06T17:29:35.535016Z",
|
||||
"generator": "pub",
|
||||
"generatorVersion": "3.1.4"
|
||||
}
|
||||
229
.dart_tool/package_config_subset
Normal file
229
.dart_tool/package_config_subset
Normal file
@@ -0,0 +1,229 @@
|
||||
args
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.4.2/lib/
|
||||
asn1lib
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/asn1lib-1.5.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/asn1lib-1.5.0/lib/
|
||||
async
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.11.0/lib/
|
||||
boolean_selector
|
||||
2.17
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.1/lib/
|
||||
brasil_fields
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/brasil_fields-1.14.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/brasil_fields-1.14.0/lib/
|
||||
characters
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.3.0/lib/
|
||||
clock
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.1/lib/
|
||||
collection
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.17.2/lib/
|
||||
convert
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.1/lib/
|
||||
crypto
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.3/lib/
|
||||
cupertino_icons
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.6/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/cupertino_icons-1.0.6/lib/
|
||||
encrypt
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/encrypt-5.0.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/encrypt-5.0.3/lib/
|
||||
fake_async
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.1/lib/
|
||||
ffi
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.1.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.1.0/lib/
|
||||
file
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.0/lib/
|
||||
flutter_lints
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-2.0.3/lib/
|
||||
gainer_crypto
|
||||
2.17
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/gainer_crypto-0.0.6/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/gainer_crypto-0.0.6/lib/
|
||||
http
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.1.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.1.0/lib/
|
||||
http_parser
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.0.2/lib/
|
||||
intl
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.18.1/lib/
|
||||
js
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7/lib/
|
||||
line_icons
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/line_icons-2.0.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/line_icons-2.0.3/lib/
|
||||
lints
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/lints-2.1.1/lib/
|
||||
matcher
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.16/lib/
|
||||
material_color_utilities
|
||||
2.17
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.5.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.5.0/lib/
|
||||
meta
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.9.1/lib/
|
||||
path
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.8.3/lib/
|
||||
path_provider_linux
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1/lib/
|
||||
path_provider_platform_interface
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.1/lib/
|
||||
path_provider_windows
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.2.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.2.1/lib/
|
||||
platform
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.3/lib/
|
||||
plugin_platform_interface
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.6/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.6/lib/
|
||||
pointycastle
|
||||
2.14
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/pointycastle-3.7.3/lib/
|
||||
shared_preferences
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.2.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences-2.2.2/lib/
|
||||
shared_preferences_android
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.2.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_android-2.2.1/lib/
|
||||
shared_preferences_foundation
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_foundation-2.3.4/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_foundation-2.3.4/lib/
|
||||
shared_preferences_linux
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.3.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.3.2/lib/
|
||||
shared_preferences_platform_interface
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.3.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_platform_interface-2.3.1/lib/
|
||||
shared_preferences_web
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.2.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_web-2.2.1/lib/
|
||||
shared_preferences_windows
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.3.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_windows-2.3.2/lib/
|
||||
source_span
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.0/lib/
|
||||
stack_trace
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.11.0/lib/
|
||||
stream_channel
|
||||
2.14
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.1/lib/
|
||||
string_scanner
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.2.0/lib/
|
||||
term_glyph
|
||||
2.12
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.1/lib/
|
||||
test_api
|
||||
2.18
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.6.0/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.6.0/lib/
|
||||
typed_data
|
||||
2.17
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.3.2/lib/
|
||||
vector_math
|
||||
2.14
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.1.4/lib/
|
||||
web
|
||||
3.1
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/web-0.1.4-beta/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/web-0.1.4-beta/lib/
|
||||
win32
|
||||
3.0
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.0.9/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.0.9/lib/
|
||||
xdg_directories
|
||||
2.19
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.3/
|
||||
file:///C:/Users/Reginaldo/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.0.3/lib/
|
||||
sky_engine
|
||||
3.0
|
||||
file:///C:/src/flutter/bin/cache/pkg/sky_engine/
|
||||
file:///C:/src/flutter/bin/cache/pkg/sky_engine/lib/
|
||||
flutter
|
||||
3.0
|
||||
file:///C:/src/flutter/packages/flutter/
|
||||
file:///C:/src/flutter/packages/flutter/lib/
|
||||
flutter_localizations
|
||||
3.0
|
||||
file:///C:/src/flutter/packages/flutter_localizations/
|
||||
file:///C:/src/flutter/packages/flutter_localizations/lib/
|
||||
flutter_test
|
||||
3.0
|
||||
file:///C:/src/flutter/packages/flutter_test/
|
||||
file:///C:/src/flutter/packages/flutter_test/lib/
|
||||
flutter_web_plugins
|
||||
3.0
|
||||
file:///C:/src/flutter/packages/flutter_web_plugins/
|
||||
file:///C:/src/flutter/packages/flutter_web_plugins/lib/
|
||||
rkm_educa_prof_app
|
||||
3.1
|
||||
file:///D:/PROJETOS/FLUTTER/rkm_educa_prof_app/
|
||||
file:///D:/PROJETOS/FLUTTER/rkm_educa_prof_app/lib/
|
||||
2
|
||||
1
.dart_tool/version
Normal file
1
.dart_tool/version
Normal file
@@ -0,0 +1 @@
|
||||
3.13.8
|
||||
Reference in New Issue
Block a user