novo projeto

This commit is contained in:
Reginaldo
2023-11-06 15:17:34 -03:00
parent b40ecb5113
commit c0ac90295a
595 changed files with 7187 additions and 0 deletions

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

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

View File

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

View File

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

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