diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..0fa6b67 --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +# 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 diff --git a/.metadata b/.metadata new file mode 100755 index 0000000..cb12308 --- /dev/null +++ b/.metadata @@ -0,0 +1,10 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: 3595343e20a61ff16d14e8ecc25f364276bb1b8b + channel: stable + +project_type: app diff --git a/README.md b/README.md new file mode 100755 index 0000000..05c45cd --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# invitor + +A new Flutter project. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) + +For help getting started with Flutter, view our +[online documentation](https://flutter.dev/docs), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100755 index 0000000..b555254 --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,30 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at + # https://dart-lang.github.io/linter/lints/index.html. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + constant_identifier_names: false + avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/android/.gitignore b/android/.gitignore new file mode 100755 index 0000000..6f56801 --- /dev/null +++ b/android/.gitignore @@ -0,0 +1,13 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java + +# Remember to never publicly share your keystore. +# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app +key.properties +**/*.keystore +**/*.jks diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100755 index 0000000..ea01a6a --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,93 @@ +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterRoot = localProperties.getProperty('flutter.sdk') +if (flutterRoot == null) { + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" +apply plugin: 'com.google.gms.google-services' + +def keystoreProperties = new Properties() +def keystorePropertiesFile = rootProject.file('key.properties') +if (keystorePropertiesFile.exists()) { + keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) +} + +android { + compileSdkVersion 31 + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + //to be comment + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + lintOptions { + disable 'InvalidPackage' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "pk.org.cas.f.three.formal.invitor.invitor" + minSdkVersion 21 + targetSdkVersion 31 + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + signingConfigs { + release { + keyAlias keystoreProperties['keyAlias'] + keyPassword keystoreProperties['keyPassword'] + storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null + storePassword keystoreProperties['storePassword'] + } + } + buildTypes { + release { + signingConfig signingConfigs.release + } + } + +} + +flutter { + source '../..' +} + +dependencies { + implementation 'com.google.android.gms:play-services-ads:20.5.0' + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" + testImplementation 'junit:junit:4.12' + androidTestImplementation 'androidx.test:runner:1.1.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' + implementation platform('com.google.firebase:firebase-bom:29.0.0') + implementation 'com.google.firebase:firebase-analytics' +} diff --git a/android/app/build/generated/source/buildConfig/debug/pk/org/cas/f/three/formal/invitor/invitor/BuildConfig.java b/android/app/build/generated/source/buildConfig/debug/pk/org/cas/f/three/formal/invitor/invitor/BuildConfig.java new file mode 100755 index 0000000..e63c728 --- /dev/null +++ b/android/app/build/generated/source/buildConfig/debug/pk/org/cas/f/three/formal/invitor/invitor/BuildConfig.java @@ -0,0 +1,12 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package pk.org.cas.f.three.formal.invitor.invitor; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String APPLICATION_ID = "pk.org.cas.f.three.formal.invitor.invitor"; + public static final String BUILD_TYPE = "debug"; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "1.0.0"; +} diff --git a/android/app/build/generated/source/buildConfig/release/pk/org/cas/f/three/formal/invitor/invitor/BuildConfig.java b/android/app/build/generated/source/buildConfig/release/pk/org/cas/f/three/formal/invitor/invitor/BuildConfig.java new file mode 100755 index 0000000..6cc5a2e --- /dev/null +++ b/android/app/build/generated/source/buildConfig/release/pk/org/cas/f/three/formal/invitor/invitor/BuildConfig.java @@ -0,0 +1,12 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package pk.org.cas.f.three.formal.invitor.invitor; + +public final class BuildConfig { + public static final boolean DEBUG = false; + public static final String APPLICATION_ID = "pk.org.cas.f.three.formal.invitor.invitor"; + public static final String BUILD_TYPE = "release"; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "1.0.0"; +} diff --git a/android/app/build/intermediates/aapt_proguard_file/release/aapt_rules.txt b/android/app/build/intermediates/aapt_proguard_file/release/aapt_rules.txt new file mode 100755 index 0000000..1a58538 --- /dev/null +++ b/android/app/build/intermediates/aapt_proguard_file/release/aapt_rules.txt @@ -0,0 +1,4 @@ +-keep class androidx.core.app.CoreComponentFactory { (); } +-keep class com.crazecoder.openfile.FileProvider { (); } +-keep class io.flutter.plugins.share.ShareFileProvider { (); } +-keep class pk.org.cas.f.three.formal.invitor.invitor.MainActivity { (); } diff --git a/android/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar b/android/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar new file mode 100755 index 0000000..7186977 Binary files /dev/null and b/android/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/android/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/release/R.jar b/android/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/release/R.jar new file mode 100755 index 0000000..9526dee Binary files /dev/null and b/android/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/release/R.jar differ diff --git a/android/app/build/intermediates/flutter/debug/.last_build_id b/android/app/build/intermediates/flutter/debug/.last_build_id new file mode 100755 index 0000000..1a3dbfc --- /dev/null +++ b/android/app/build/intermediates/flutter/debug/.last_build_id @@ -0,0 +1 @@ +499af073cc116764f15a9e1e2e4bce44 \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/AssetManifest.json b/android/app/build/intermediates/flutter/debug/flutter_assets/AssetManifest.json new file mode 100755 index 0000000..1bdc296 --- /dev/null +++ b/android/app/build/intermediates/flutter/debug/flutter_assets/AssetManifest.json @@ -0,0 +1 @@ +{"assets/images/animated_text_gifs/colorize.gif":["assets/images/animated_text_gifs/colorize.gif"],"assets/images/animated_text_gifs/fade.gif":["assets/images/animated_text_gifs/fade.gif"],"assets/images/animated_text_gifs/flicker.gif":["assets/images/animated_text_gifs/flicker.gif"],"assets/images/animated_text_gifs/rotate.gif":["assets/images/animated_text_gifs/rotate.gif"],"assets/images/animated_text_gifs/scale.gif":["assets/images/animated_text_gifs/scale.gif"],"assets/images/animated_text_gifs/text_liquid_fill.gif":["assets/images/animated_text_gifs/text_liquid_fill.gif"],"assets/images/animated_text_gifs/type_writer.gif":["assets/images/animated_text_gifs/type_writer.gif"],"assets/images/animated_text_gifs/typer.gif":["assets/images/animated_text_gifs/typer.gif"],"assets/images/animated_text_gifs/wavy.gif":["assets/images/animated_text_gifs/wavy.gif"],"assets/images/no_data_found/no_data_found.png":["assets/images/no_data_found/no_data_found.png"],"assets/images/ring.png":["assets/images/ring.png"],"assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg":["assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg"],"assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg":["assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg"],"assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png":["assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png"],"assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png":["assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png"],"fonts/adelicia_script.ttf":["fonts/adelicia_script.ttf"],"fonts/aerotis.ttf":["fonts/aerotis.ttf"],"fonts/alexbrush_regular.ttf":["fonts/alexbrush_regular.ttf"],"fonts/alliana_script.ttf":["fonts/alliana_script.ttf"],"fonts/amaticsc_regular.ttf":["fonts/amaticsc_regular.ttf"],"fonts/amelia_giovani.otf":["fonts/amelia_giovani.otf"],"fonts/angelina.TTF":["fonts/angelina.TTF"],"fonts/ardeco.ttf":["fonts/ardeco.ttf"],"fonts/arimo_regular.ttf":["fonts/arimo_regular.ttf"],"fonts/aspire.ttf":["fonts/aspire.ttf"],"fonts/be_bright.ttf":["fonts/be_bright.ttf"],"fonts/bellasia.ttf":["fonts/bellasia.ttf"],"fonts/bentham.otf":["fonts/bentham.otf"],"fonts/billabong.ttf":["fonts/billabong.ttf"],"fonts/blingtastic_script.ttf":["fonts/blingtastic_script.ttf"],"fonts/brayden_script_regular.otf":["fonts/brayden_script_regular.otf"],"fonts/cathiy_betiey.ttf":["fonts/cathiy_betiey.ttf"],"fonts/cheque_regular.otf":["fonts/cheque_regular.otf"],"fonts/chopin_script.otf":["fonts/chopin_script.otf"],"fonts/cinzel_regular.otf":["fonts/cinzel_regular.otf"],"fonts/com_four_t_fine_regular.ttf":["fonts/com_four_t_fine_regular.ttf"],"fonts/courgette_regular.ttf":["fonts/courgette_regular.ttf"],"fonts/engry.otf":["fonts/engry.otf"],"fonts/great_vibes_regular.ttf":["fonts/great_vibes_regular.ttf"],"fonts/handkerchief.ttf":["fonts/handkerchief.ttf"],"fonts/intuitive.ttf":["fonts/intuitive.ttf"],"fonts/jenna_sue.ttf":["fonts/jenna_sue.ttf"],"fonts/josefin_slab_regular.ttf":["fonts/josefin_slab_regular.ttf"],"fonts/kreon_bold.ttf":["fonts/kreon_bold.ttf"],"fonts/kreon_regular.ttf":["fonts/kreon_regular.ttf"],"fonts/lato_regular.ttf":["fonts/lato_regular.ttf"],"fonts/learning_curve_pro.ttf":["fonts/learning_curve_pro.ttf"],"fonts/let_trace_basic.otf":["fonts/let_trace_basic.otf"],"fonts/libre_baskerville_italic.ttf":["fonts/libre_baskerville_italic.ttf"],"fonts/libre_baskerville_regular.ttf":["fonts/libre_baskerville_regular.ttf"],"fonts/lobster.otf":["fonts/lobster.otf"],"fonts/luckiest_guy.ttf":["fonts/luckiest_guy.ttf"],"fonts/meddon.ttf":["fonts/meddon.ttf"],"fonts/merriweather_italic.ttf":["fonts/merriweather_italic.ttf"],"fonts/monsieurladoulaise.ttf":["fonts/monsieurladoulaise.ttf"],"fonts/mottona.otf":["fonts/mottona.otf"],"fonts/mountains_of_christmas_regular.ttf":["fonts/mountains_of_christmas_regular.ttf"],"fonts/open_sans_bold.ttf":["fonts/open_sans_bold.ttf"],"fonts/open_sans_light.ttf":["fonts/open_sans_light.ttf"],"fonts/oswald_light.ttf":["fonts/oswald_light.ttf"],"fonts/parisienne_regular.ttf":["fonts/parisienne_regular.ttf"],"fonts/patrick_hand.otf":["fonts/patrick_hand.otf"],"fonts/playfair_display_bold.ttf":["fonts/playfair_display_bold.ttf"],"fonts/playfair_display_variable_font_weight.ttf":["fonts/playfair_display_variable_font_weight.ttf"],"fonts/quicksand_bold.otf":["fonts/quicksand_bold.otf"],"fonts/quicksand_book.otf":["fonts/quicksand_book.otf"],"fonts/ribeye_marrow_regular.ttf":["fonts/ribeye_marrow_regular.ttf"],"fonts/rozha_one_regular.ttf":["fonts/rozha_one_regular.ttf"],"fonts/sail_regular.otf":["fonts/sail_regular.otf"],"fonts/shellia.ttf":["fonts/shellia.ttf"],"fonts/sleeplesson_regular.ttf":["fonts/sleeplesson_regular.ttf"],"fonts/spicy_rice_regular.otf":["fonts/spicy_rice_regular.otf"],"fonts/stint_ultra_expanded_regular.ttf":["fonts/stint_ultra_expanded_regular.ttf"],"fonts/tex_gyretermes_regular.otf":["fonts/tex_gyretermes_regular.otf"],"fonts/vast_shadow_regular.ttf":["fonts/vast_shadow_regular.ttf"],"fonts/yesteryear_regular.ttf":["fonts/yesteryear_regular.ttf"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"],"packages/fluttertoast/assets/toastify.css":["packages/fluttertoast/assets/toastify.css"],"packages/fluttertoast/assets/toastify.js":["packages/fluttertoast/assets/toastify.js"],"packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf":["packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf"],"packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf":["packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf"],"packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf":["packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf"]} \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/FontManifest.json b/android/app/build/intermediates/flutter/debug/flutter_assets/FontManifest.json new file mode 100755 index 0000000..6b5f9b6 --- /dev/null +++ b/android/app/build/intermediates/flutter/debug/flutter_assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"PlayfairDisplay","fonts":[{"asset":"fonts/playfair_display_variable_font_weight.ttf"}]},{"family":"Billabong","fonts":[{"asset":"fonts/billabong.ttf"}]},{"family":"Arimo","fonts":[{"asset":"fonts/arimo_regular.ttf"}]},{"family":"TeXGyreTermes","fonts":[{"asset":"fonts/tex_gyretermes_regular.otf"}]},{"family":"GreatVibes","fonts":[{"asset":"fonts/great_vibes_regular.ttf"}]},{"family":"LearningCurvePro","fonts":[{"asset":"fonts/learning_curve_pro.ttf"}]},{"family":"OpenSans","fonts":[{"asset":"fonts/open_sans_light.ttf"}]},{"family":"OpenSansBold","fonts":[{"asset":"fonts/open_sans_bold.ttf"}]},{"family":"COM4t","fonts":[{"asset":"fonts/com_four_t_fine_regular.ttf"}]},{"family":"MountainsOfChristmas","fonts":[{"asset":"fonts/mountains_of_christmas_regular.ttf"}]},{"family":"Quicksand","fonts":[{"asset":"fonts/quicksand_book.otf"}]},{"family":"QuicksandBold","fonts":[{"asset":"fonts/quicksand_bold.otf"}]},{"family":"AdeliciaScript","fonts":[{"asset":"fonts/adelicia_script.ttf"}]},{"family":"Parisienne","fonts":[{"asset":"fonts/parisienne_regular.ttf"}]},{"family":"PatrickHand","fonts":[{"asset":"fonts/patrick_hand.otf"}]},{"family":"SpicyRice","fonts":[{"asset":"fonts/spicy_rice_regular.otf"}]},{"family":"JennaSue","fonts":[{"asset":"fonts/jenna_sue.ttf"}]},{"family":"JosefinSlab","fonts":[{"asset":"fonts/josefin_slab_regular.ttf"}]},{"family":"LuckiestGuy","fonts":[{"asset":"fonts/luckiest_guy.ttf"}]},{"family":"Lato","fonts":[{"asset":"fonts/lato_regular.ttf"}]},{"family":"Cinzel","fonts":[{"asset":"fonts/cinzel_regular.otf"}]},{"family":"AmaticSC","fonts":[{"asset":"fonts/amaticsc_regular.ttf"}]},{"family":"Lobster","fonts":[{"asset":"fonts/lobster.otf"}]},{"family":"MerriWeather","fonts":[{"asset":"fonts/merriweather_italic.ttf"}]},{"family":"ChopinScript","fonts":[{"asset":"fonts/chopin_script.otf"}]},{"family":"Courgette","fonts":[{"asset":"fonts/courgette_regular.ttf"}]},{"family":"RozhaOne","fonts":[{"asset":"fonts/rozha_one_regular.ttf"}]},{"family":"AlexBrush","fonts":[{"asset":"fonts/alexbrush_regular.ttf"}]},{"family":"Aspire","fonts":[{"asset":"fonts/aspire.ttf"}]},{"family":"Angelina","fonts":[{"asset":"fonts/angelina.TTF"}]},{"family":"Meddon","fonts":[{"asset":"fonts/meddon.ttf"}]},{"family":"Yesteryear","fonts":[{"asset":"fonts/yesteryear_regular.ttf"}]},{"family":"Ardeco","fonts":[{"asset":"fonts/ardeco.ttf"}]},{"family":"Sail","fonts":[{"asset":"fonts/sail_regular.otf"}]},{"family":"VastShadow","fonts":[{"asset":"fonts/vast_shadow_regular.ttf"}]},{"family":"RibeyeMarrow","fonts":[{"asset":"fonts/ribeye_marrow_regular.ttf"}]},{"family":"LetTrace","fonts":[{"asset":"fonts/let_trace_basic.otf"}]},{"family":"Intuitive","fonts":[{"asset":"fonts/intuitive.ttf"}]},{"family":"Kreon","fonts":[{"asset":"fonts/kreon_regular.ttf"}]},{"family":"KreonBold","fonts":[{"asset":"fonts/kreon_bold.ttf"}]},{"family":"Libre","fonts":[{"asset":"fonts/libre_baskerville_regular.ttf"}]},{"family":"Libreitalic","fonts":[{"asset":"fonts/libre_baskerville_italic.ttf"}]},{"family":"BeBright","fonts":[{"asset":"fonts/be_bright.ttf"}]},{"family":"BraydenScript","fonts":[{"asset":"fonts/brayden_script_regular.otf"}]},{"family":"BlingtasticScript","fonts":[{"asset":"fonts/blingtastic_script.ttf"}]},{"family":"Bentham","fonts":[{"asset":"fonts/bentham.otf"}]},{"family":"StintUltra","fonts":[{"asset":"fonts/stint_ultra_expanded_regular.ttf"}]},{"family":"Cheque","fonts":[{"asset":"fonts/cheque_regular.otf"}]},{"family":"Engry","fonts":[{"asset":"fonts/engry.otf"}]},{"family":"AmeliaGiovani","fonts":[{"asset":"fonts/amelia_giovani.otf"}]},{"family":"Bellasia","fonts":[{"asset":"fonts/bellasia.ttf"}]},{"family":"CathiyBetiey","fonts":[{"asset":"fonts/cathiy_betiey.ttf"}]},{"family":"Sleeplesson","fonts":[{"asset":"fonts/sleeplesson_regular.ttf"}]},{"family":"MonsieurLaDoulaise","fonts":[{"asset":"fonts/monsieurladoulaise.ttf"}]},{"family":"AllianaScript","fonts":[{"asset":"fonts/alliana_script.ttf"}]},{"family":"Oswald","fonts":[{"asset":"fonts/oswald_light.ttf"}]},{"family":"Playfair","fonts":[{"asset":"fonts/playfair_display_bold.ttf"}]},{"family":"Shellia","fonts":[{"asset":"fonts/shellia.ttf"}]},{"family":"Mottona","fonts":[{"asset":"fonts/mottona.otf"}]},{"family":"Handkerchief","fonts":[{"asset":"fonts/handkerchief.ttf"}]},{"family":"Aerotis","fonts":[{"asset":"fonts/aerotis.ttf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]},{"family":"packages/font_awesome_flutter/FontAwesomeBrands","fonts":[{"weight":400,"asset":"packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf"}]},{"family":"packages/font_awesome_flutter/FontAwesomeRegular","fonts":[{"weight":400,"asset":"packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf"}]},{"family":"packages/font_awesome_flutter/FontAwesomeSolid","fonts":[{"weight":900,"asset":"packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf"}]}] \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/NOTICES.Z b/android/app/build/intermediates/flutter/debug/flutter_assets/NOTICES.Z new file mode 100755 index 0000000..178c278 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/NOTICES.Z differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/colorize.gif b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/colorize.gif new file mode 100755 index 0000000..22ffa3f Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/colorize.gif differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/fade.gif b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/fade.gif new file mode 100755 index 0000000..5c6d1d2 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/fade.gif differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/flicker.gif b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/flicker.gif new file mode 100755 index 0000000..cb153a2 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/flicker.gif differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/rotate.gif b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/rotate.gif new file mode 100755 index 0000000..330b3fa Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/rotate.gif differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/scale.gif b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/scale.gif new file mode 100755 index 0000000..d93aeed Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/scale.gif differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/text_liquid_fill.gif b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/text_liquid_fill.gif new file mode 100755 index 0000000..6c469f9 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/text_liquid_fill.gif differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/type_writer.gif b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/type_writer.gif new file mode 100755 index 0000000..19ea8ad Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/type_writer.gif differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/typer.gif b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/typer.gif new file mode 100755 index 0000000..1738e77 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/typer.gif differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/wavy.gif b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/wavy.gif new file mode 100755 index 0000000..77b030b Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/wavy.gif differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/no_data_found/no_data_found.png b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/no_data_found/no_data_found.png new file mode 100755 index 0000000..bb8178b Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/no_data_found/no_data_found.png differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/ring.png b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/ring.png new file mode 100755 index 0000000..5bb3575 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/ring.png differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg new file mode 100755 index 0000000..e29d03d Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg new file mode 100755 index 0000000..267525b Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png new file mode 100755 index 0000000..37f8326 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png new file mode 100755 index 0000000..37f8326 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf new file mode 100755 index 0000000..3246ad5 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/adelicia_script.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/adelicia_script.ttf new file mode 100755 index 0000000..ed40b0e Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/adelicia_script.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/aerotis.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/aerotis.ttf new file mode 100755 index 0000000..ce18861 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/aerotis.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/alexbrush_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/alexbrush_regular.ttf new file mode 100755 index 0000000..58c43a9 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/alexbrush_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/alliana_script.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/alliana_script.ttf new file mode 100755 index 0000000..ebfc689 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/alliana_script.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/amaticsc_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/amaticsc_regular.ttf new file mode 100755 index 0000000..f2fb3d3 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/amaticsc_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/amelia_giovani.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/amelia_giovani.otf new file mode 100755 index 0000000..8a1190f Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/amelia_giovani.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/angelina.TTF b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/angelina.TTF new file mode 100755 index 0000000..fe880ab Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/angelina.TTF differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/ardeco.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/ardeco.ttf new file mode 100755 index 0000000..8dd2186 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/ardeco.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/arimo_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/arimo_regular.ttf new file mode 100755 index 0000000..28ec292 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/arimo_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/aspire.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/aspire.ttf new file mode 100755 index 0000000..d8cb199 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/aspire.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/be_bright.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/be_bright.ttf new file mode 100755 index 0000000..410dc79 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/be_bright.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/bellasia.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/bellasia.ttf new file mode 100755 index 0000000..69645c6 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/bellasia.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/bentham.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/bentham.otf new file mode 100755 index 0000000..4e56025 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/bentham.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/billabong.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/billabong.ttf new file mode 100755 index 0000000..0df4bf6 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/billabong.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/blingtastic_script.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/blingtastic_script.ttf new file mode 100755 index 0000000..0cf7922 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/blingtastic_script.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/brayden_script_regular.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/brayden_script_regular.otf new file mode 100755 index 0000000..9e312e0 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/brayden_script_regular.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cathiy_betiey.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cathiy_betiey.ttf new file mode 100755 index 0000000..bc9daef Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cathiy_betiey.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cheque_regular.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cheque_regular.otf new file mode 100755 index 0000000..712ca0d Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cheque_regular.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/chopin_script.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/chopin_script.otf new file mode 100755 index 0000000..e914944 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/chopin_script.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cinzel_regular.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cinzel_regular.otf new file mode 100755 index 0000000..2fa4b3e Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cinzel_regular.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/com_four_t_fine_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/com_four_t_fine_regular.ttf new file mode 100755 index 0000000..b01ca5a Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/com_four_t_fine_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/courgette_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/courgette_regular.ttf new file mode 100755 index 0000000..433766b Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/courgette_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/engry.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/engry.otf new file mode 100755 index 0000000..da4712b Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/engry.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/great_vibes_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/great_vibes_regular.ttf new file mode 100755 index 0000000..fcd2ddd Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/great_vibes_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/handkerchief.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/handkerchief.ttf new file mode 100755 index 0000000..fa65cc8 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/handkerchief.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/intuitive.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/intuitive.ttf new file mode 100755 index 0000000..cbfa2b0 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/intuitive.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/jenna_sue.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/jenna_sue.ttf new file mode 100755 index 0000000..18c7fc6 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/jenna_sue.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/josefin_slab_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/josefin_slab_regular.ttf new file mode 100755 index 0000000..9ac13d1 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/josefin_slab_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/kreon_bold.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/kreon_bold.ttf new file mode 100755 index 0000000..977a6a6 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/kreon_bold.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/kreon_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/kreon_regular.ttf new file mode 100755 index 0000000..b506338 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/kreon_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/lato_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/lato_regular.ttf new file mode 100755 index 0000000..04ea8ef Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/lato_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/learning_curve_pro.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/learning_curve_pro.ttf new file mode 100755 index 0000000..cff2ece Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/learning_curve_pro.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/let_trace_basic.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/let_trace_basic.otf new file mode 100755 index 0000000..d728cdc Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/let_trace_basic.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/libre_baskerville_italic.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/libre_baskerville_italic.ttf new file mode 100755 index 0000000..7a7a9dc Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/libre_baskerville_italic.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/libre_baskerville_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/libre_baskerville_regular.ttf new file mode 100755 index 0000000..3fadf70 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/libre_baskerville_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/lobster.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/lobster.otf new file mode 100755 index 0000000..86effca Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/lobster.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/luckiest_guy.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/luckiest_guy.ttf new file mode 100755 index 0000000..01b535a Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/luckiest_guy.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/meddon.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/meddon.ttf new file mode 100755 index 0000000..dab3a70 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/meddon.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/merriweather_italic.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/merriweather_italic.ttf new file mode 100755 index 0000000..ecaed9a Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/merriweather_italic.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/monsieurladoulaise.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/monsieurladoulaise.ttf new file mode 100755 index 0000000..3d2bf99 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/monsieurladoulaise.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/mottona.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/mottona.otf new file mode 100755 index 0000000..a53f832 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/mottona.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/mountains_of_christmas_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/mountains_of_christmas_regular.ttf new file mode 100755 index 0000000..1e1f9b5 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/mountains_of_christmas_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/open_sans_bold.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/open_sans_bold.ttf new file mode 100755 index 0000000..fd79d43 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/open_sans_bold.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/open_sans_light.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/open_sans_light.ttf new file mode 100755 index 0000000..0d38189 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/open_sans_light.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/oswald_light.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/oswald_light.ttf new file mode 100755 index 0000000..18cac63 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/oswald_light.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/parisienne_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/parisienne_regular.ttf new file mode 100755 index 0000000..ef2db74 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/parisienne_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/patrick_hand.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/patrick_hand.otf new file mode 100755 index 0000000..ac4a0bc Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/patrick_hand.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/playfair_display_bold.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/playfair_display_bold.ttf new file mode 100755 index 0000000..93a59cf Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/playfair_display_bold.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/playfair_display_variable_font_weight.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/playfair_display_variable_font_weight.ttf new file mode 100755 index 0000000..a25e8f3 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/playfair_display_variable_font_weight.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/quicksand_bold.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/quicksand_bold.otf new file mode 100755 index 0000000..4f371fa Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/quicksand_bold.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/quicksand_book.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/quicksand_book.otf new file mode 100755 index 0000000..ee8b12d Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/quicksand_book.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/ribeye_marrow_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/ribeye_marrow_regular.ttf new file mode 100755 index 0000000..4fd058d Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/ribeye_marrow_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/rozha_one_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/rozha_one_regular.ttf new file mode 100755 index 0000000..05775d2 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/rozha_one_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/sail_regular.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/sail_regular.otf new file mode 100755 index 0000000..3cc5e79 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/sail_regular.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/shellia.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/shellia.ttf new file mode 100755 index 0000000..60b6ca4 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/shellia.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/sleeplesson_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/sleeplesson_regular.ttf new file mode 100755 index 0000000..745202d Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/sleeplesson_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/spicy_rice_regular.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/spicy_rice_regular.otf new file mode 100755 index 0000000..b5fca86 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/spicy_rice_regular.otf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/stint_ultra_expanded_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/stint_ultra_expanded_regular.ttf new file mode 100755 index 0000000..ed26e7b Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/stint_ultra_expanded_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/tex_gyretermes_regular.otf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/tex_gyretermes_regular.otf new file mode 100755 index 0000000..e69de29 diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/vast_shadow_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/vast_shadow_regular.ttf new file mode 100755 index 0000000..be4fc19 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/vast_shadow_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/yesteryear_regular.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/yesteryear_regular.ttf new file mode 100755 index 0000000..76269e8 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/fonts/yesteryear_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data b/android/app/build/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data new file mode 100755 index 0000000..6824762 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/kernel_blob.bin b/android/app/build/intermediates/flutter/debug/flutter_assets/kernel_blob.bin new file mode 100755 index 0000000..968301a Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/kernel_blob.bin differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf new file mode 100755 index 0000000..79ba7ea Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/packages/fluttertoast/assets/toastify.css b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/fluttertoast/assets/toastify.css new file mode 100755 index 0000000..2d0471e --- /dev/null +++ b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/fluttertoast/assets/toastify.css @@ -0,0 +1,14 @@ +/** + * Minified by jsDelivr using clean-css v4.2.3. + * Original file: /npm/toastify-js@1.9.3/src/toastify.css + * + * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files + */ +/*! + * Toastify js 1.9.3 + * https://github.com/apvarun/toastify-js + * @license MIT licensed + * + * Copyright (C) 2018 Varun A P + */ +.toastify{padding:12px 20px;color:#fff;display:inline-block;box-shadow:0 3px 6px -1px rgba(0,0,0,.12),0 10px 36px -4px rgba(77,96,232,.3);background:-webkit-linear-gradient(315deg,#73a5ff,#5477f5);background:linear-gradient(135deg,#73a5ff,#5477f5);position:fixed;opacity:0;transition:all .4s cubic-bezier(.215,.61,.355,1);border-radius:2px;cursor:pointer;text-decoration:none;max-width:calc(50% - 20px);z-index:2147483647}.toastify.on{opacity:1}.toast-close{opacity:.4;padding:0 5px}.toastify-right{right:15px}.toastify-left{left:15px}.toastify-top{top:-150px}.toastify-bottom{bottom:-150px}.toastify-rounded{border-radius:25px}.toastify-avatar{width:1.5em;height:1.5em;margin:-7px 5px;border-radius:2px}.toastify-center{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content;max-width:-moz-fit-content}@media only screen and (max-width:360px){.toastify-left,.toastify-right{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content}} \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/packages/fluttertoast/assets/toastify.js b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/fluttertoast/assets/toastify.js new file mode 100755 index 0000000..acdff00 --- /dev/null +++ b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/fluttertoast/assets/toastify.js @@ -0,0 +1,14 @@ +/** + * Minified by jsDelivr using Terser v5.3.0. + * Original file: /npm/toastify-js@1.9.3/src/toastify.js + * + * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files + */ +/*! + * Toastify js 1.9.3 + * https://github.com/apvarun/toastify-js + * @license MIT licensed + * + * Copyright (C) 2018 Varun A P + */ +!function(t,o){"object"==typeof module&&module.exports?module.exports=o():t.Toastify=o()}(this,(function(t){var o=function(t){return new o.lib.init(t)};function i(t,o){return o.offset[t]?isNaN(o.offset[t])?o.offset[t]:o.offset[t]+"px":"0px"}function s(t,o){return!(!t||"string"!=typeof o)&&!!(t.className&&t.className.trim().split(/\s+/gi).indexOf(o)>-1)}return o.lib=o.prototype={toastify:"1.9.3",constructor:o,init:function(t){return t||(t={}),this.options={},this.toastElement=null,this.options.text=t.text||"Hi there!",this.options.node=t.node,this.options.duration=0===t.duration?0:t.duration||3e3,this.options.selector=t.selector,this.options.callback=t.callback||function(){},this.options.destination=t.destination,this.options.newWindow=t.newWindow||!1,this.options.close=t.close||!1,this.options.gravity="bottom"===t.gravity?"toastify-bottom":"toastify-top",this.options.positionLeft=t.positionLeft||!1,this.options.position=t.position||"",this.options.backgroundColor=t.backgroundColor,this.options.avatar=t.avatar||"",this.options.className=t.className||"",this.options.stopOnFocus=void 0===t.stopOnFocus||t.stopOnFocus,this.options.onClick=t.onClick,this.options.offset=t.offset||{x:0,y:0},this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var t=document.createElement("div");if(t.className="toastify on "+this.options.className,this.options.position?t.className+=" toastify-"+this.options.position:!0===this.options.positionLeft?(t.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):t.className+=" toastify-right",t.className+=" "+this.options.gravity,this.options.backgroundColor&&(t.style.background=this.options.backgroundColor),this.options.node&&this.options.node.nodeType===Node.ELEMENT_NODE)t.appendChild(this.options.node);else if(t.innerHTML=this.options.text,""!==this.options.avatar){var o=document.createElement("img");o.src=this.options.avatar,o.className="toastify-avatar","left"==this.options.position||!0===this.options.positionLeft?t.appendChild(o):t.insertAdjacentElement("afterbegin",o)}if(!0===this.options.close){var s=document.createElement("span");s.innerHTML="✖",s.className="toast-close",s.addEventListener("click",function(t){t.stopPropagation(),this.removeElement(this.toastElement),window.clearTimeout(this.toastElement.timeOutValue)}.bind(this));var n=window.innerWidth>0?window.innerWidth:screen.width;("left"==this.options.position||!0===this.options.positionLeft)&&n>360?t.insertAdjacentElement("afterbegin",s):t.appendChild(s)}if(this.options.stopOnFocus&&this.options.duration>0){var e=this;t.addEventListener("mouseover",(function(o){window.clearTimeout(t.timeOutValue)})),t.addEventListener("mouseleave",(function(){t.timeOutValue=window.setTimeout((function(){e.removeElement(t)}),e.options.duration)}))}if(void 0!==this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),!0===this.options.newWindow?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),"function"==typeof this.options.onClick&&void 0===this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),this.options.onClick()}.bind(this)),"object"==typeof this.options.offset){var a=i("x",this.options),p=i("y",this.options),r="left"==this.options.position?a:"-"+a,l="toastify-top"==this.options.gravity?p:"-"+p;t.style.transform="translate("+r+","+l+")"}return t},showToast:function(){var t;if(this.toastElement=this.buildToast(),!(t=void 0===this.options.selector?document.body:document.getElementById(this.options.selector)))throw"Root element is not defined";return t.insertBefore(this.toastElement,t.firstChild),o.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(t){t.className=t.className.replace(" on",""),window.setTimeout(function(){this.options.node&&this.options.node.parentNode&&this.options.node.parentNode.removeChild(this.options.node),t.parentNode&&t.parentNode.removeChild(t),this.options.callback.call(t),o.reposition()}.bind(this),400)}},o.reposition=function(){for(var t,o={top:15,bottom:15},i={top:15,bottom:15},n={top:15,bottom:15},e=document.getElementsByClassName("toastify"),a=0;a0?window.innerWidth:screen.width)<=360?(e[a].style[t]=n[t]+"px",n[t]+=p+15):!0===s(e[a],"toastify-left")?(e[a].style[t]=o[t]+"px",o[t]+=p+15):(e[a].style[t]=i[t]+"px",i[t]+=p+15)}return this},o.lib.init.prototype=o.lib,o})); \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf new file mode 100755 index 0000000..2e5b9f1 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf new file mode 100755 index 0000000..6be32ef Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf new file mode 100755 index 0000000..4dd1199 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_assets/vm_snapshot_data b/android/app/build/intermediates/flutter/debug/flutter_assets/vm_snapshot_data new file mode 100755 index 0000000..400b8be Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/flutter_assets/vm_snapshot_data differ diff --git a/android/app/build/intermediates/flutter/debug/flutter_build.d b/android/app/build/intermediates/flutter/debug/flutter_build.d new file mode 100755 index 0000000..0c25edf --- /dev/null +++ b/android/app/build/intermediates/flutter/debug/flutter_build.d @@ -0,0 +1 @@ + C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/animated_text_gifs/colorize.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/animated_text_gifs/fade.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/animated_text_gifs/flicker.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/animated_text_gifs/rotate.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/animated_text_gifs/scale.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/animated_text_gifs/text_liquid_fill.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/animated_text_gifs/type_writer.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/animated_text_gifs/typer.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/animated_text_gifs/wavy.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/no_data_found/no_data_found.png C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/ring.png C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/adelicia_script.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/aerotis.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/alexbrush_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/alliana_script.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/amaticsc_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/amelia_giovani.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/angelina.TTF C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/ardeco.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/arimo_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/aspire.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/be_bright.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/bellasia.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/bentham.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/billabong.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/blingtastic_script.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/brayden_script_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/cathiy_betiey.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/cheque_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/chopin_script.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/cinzel_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/com_four_t_fine_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/courgette_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/engry.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/great_vibes_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/handkerchief.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/intuitive.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/jenna_sue.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/josefin_slab_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/kreon_bold.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/kreon_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/lato_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/learning_curve_pro.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/let_trace_basic.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/libre_baskerville_italic.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/libre_baskerville_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/lobster.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/luckiest_guy.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/meddon.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/merriweather_italic.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/monsieurladoulaise.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/mottona.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/mountains_of_christmas_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/open_sans_bold.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/open_sans_light.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/oswald_light.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/parisienne_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/patrick_hand.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/playfair_display_bold.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/playfair_display_variable_font_weight.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/quicksand_bold.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/quicksand_book.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/ribeye_marrow_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/rozha_one_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/sail_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/shellia.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/sleeplesson_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/spicy_rice_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/stint_ultra_expanded_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/tex_gyretermes_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/vast_shadow_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\fonts/yesteryear_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\packages/fluttertoast/assets/toastify.css C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\packages/fluttertoast/assets/toastify.js C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data: C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\colorize.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\fade.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\flicker.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\rotate.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\scale.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\text_liquid_fill.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\type_writer.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\typer.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\wavy.gif C:\\FlutterProjects\\invitor\\assets\\images\\no_data_found\\no_data_found.png C:\\FlutterProjects\\invitor\\assets\\images\\ring.png C:\\FlutterProjects\\invitor\\assets\\images\\wedding\\wedding_invitations\\geometric_and_flowers_wedding_invitations.jpeg C:\\FlutterProjects\\invitor\\assets\\images\\wedding\\wedding_invitations\\geometric_and_flowers_wedding_invitations_customize.jpeg C:\\FlutterProjects\\invitor\\assets\\images\\wedding\\wedding_invitations\\green_bordered_script_geometric_floral_wedding_invitation.png C:\\FlutterProjects\\invitor\\assets\\images\\wedding\\wedding_invitations\\green_bordered_script_geometric_floral_wedding_invitation_customize.png C:\\FlutterProjects\\invitor\\fonts\\adelicia_script.ttf C:\\FlutterProjects\\invitor\\fonts\\aerotis.ttf C:\\FlutterProjects\\invitor\\fonts\\alexbrush_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\alliana_script.ttf C:\\FlutterProjects\\invitor\\fonts\\amaticsc_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\amelia_giovani.otf C:\\FlutterProjects\\invitor\\fonts\\angelina.TTF C:\\FlutterProjects\\invitor\\fonts\\ardeco.ttf C:\\FlutterProjects\\invitor\\fonts\\arimo_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\aspire.ttf C:\\FlutterProjects\\invitor\\fonts\\be_bright.ttf C:\\FlutterProjects\\invitor\\fonts\\bellasia.ttf C:\\FlutterProjects\\invitor\\fonts\\bentham.otf C:\\FlutterProjects\\invitor\\fonts\\billabong.ttf C:\\FlutterProjects\\invitor\\fonts\\blingtastic_script.ttf C:\\FlutterProjects\\invitor\\fonts\\brayden_script_regular.otf C:\\FlutterProjects\\invitor\\fonts\\cathiy_betiey.ttf C:\\FlutterProjects\\invitor\\fonts\\cheque_regular.otf C:\\FlutterProjects\\invitor\\fonts\\chopin_script.otf C:\\FlutterProjects\\invitor\\fonts\\cinzel_regular.otf C:\\FlutterProjects\\invitor\\fonts\\com_four_t_fine_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\courgette_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\engry.otf C:\\FlutterProjects\\invitor\\fonts\\great_vibes_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\handkerchief.ttf C:\\FlutterProjects\\invitor\\fonts\\intuitive.ttf C:\\FlutterProjects\\invitor\\fonts\\jenna_sue.ttf C:\\FlutterProjects\\invitor\\fonts\\josefin_slab_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\kreon_bold.ttf C:\\FlutterProjects\\invitor\\fonts\\kreon_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\lato_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\learning_curve_pro.ttf C:\\FlutterProjects\\invitor\\fonts\\let_trace_basic.otf C:\\FlutterProjects\\invitor\\fonts\\libre_baskerville_italic.ttf C:\\FlutterProjects\\invitor\\fonts\\libre_baskerville_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\lobster.otf C:\\FlutterProjects\\invitor\\fonts\\luckiest_guy.ttf C:\\FlutterProjects\\invitor\\fonts\\meddon.ttf C:\\FlutterProjects\\invitor\\fonts\\merriweather_italic.ttf C:\\FlutterProjects\\invitor\\fonts\\monsieurladoulaise.ttf C:\\FlutterProjects\\invitor\\fonts\\mottona.otf C:\\FlutterProjects\\invitor\\fonts\\mountains_of_christmas_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\open_sans_bold.ttf C:\\FlutterProjects\\invitor\\fonts\\open_sans_light.ttf C:\\FlutterProjects\\invitor\\fonts\\oswald_light.ttf C:\\FlutterProjects\\invitor\\fonts\\parisienne_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\patrick_hand.otf C:\\FlutterProjects\\invitor\\fonts\\playfair_display_bold.ttf C:\\FlutterProjects\\invitor\\fonts\\playfair_display_variable_font_weight.ttf C:\\FlutterProjects\\invitor\\fonts\\quicksand_bold.otf C:\\FlutterProjects\\invitor\\fonts\\quicksand_book.otf C:\\FlutterProjects\\invitor\\fonts\\ribeye_marrow_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\rozha_one_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\sail_regular.otf C:\\FlutterProjects\\invitor\\fonts\\shellia.ttf C:\\FlutterProjects\\invitor\\fonts\\sleeplesson_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\spicy_rice_regular.otf C:\\FlutterProjects\\invitor\\fonts\\stint_ultra_expanded_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\tex_gyretermes_regular.otf C:\\FlutterProjects\\invitor\\fonts\\vast_shadow_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\yesteryear_regular.ttf C:\\FlutterProjects\\invitor\\lib\\animation_to_video_screen\\animation_to_video_behavior.dart C:\\FlutterProjects\\invitor\\lib\\animation_to_video_screen\\animation_to_video_ui.dart C:\\FlutterProjects\\invitor\\lib\\card_collection_screen\\card_collection_behavior.dart C:\\FlutterProjects\\invitor\\lib\\card_collection_screen\\card_collection_ui.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\card_customization_behavior.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\card_customization_ui.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\card_selection_portion\\wedding\\wedding_invitations\\geometric_and_flowers_wedding_invitations.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\invitation_card_single_text_container.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_animation_text.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_colorize_animated_text.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_fade_animated_text.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_flicker_animation_text.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_scale_animated_text.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_type_writer_animated_text.dart C:\\FlutterProjects\\invitor\\lib\\contacts_screen\\contacts_behavior.dart C:\\FlutterProjects\\invitor\\lib\\contacts_screen\\contacts_ui.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\data_collection_behavior.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\data_collection_portion_provider.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\data_collection_ui.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\birth.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\engagement.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\graduation.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\memorial.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\moving.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\pregnancy.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\save_the_marriage_date.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\wedding.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\babies_and_kids_baby_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\babies_and_kids_first_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\babies_and_kids_kids_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\baby_shower.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\baby_sprinkle.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\baptism_and_christening.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\birth_announcements.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\first_communion.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\gender_reveal.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\sip_and_see.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\birthday\\1st_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\birthday\\baby_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\birthday\\kids_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\birthday\\men_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\birthday\\women_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\data_collection_text_field.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\anniversary.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\bbq_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\brunch.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\cocktail_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\dinner_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\family_reunion.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\graduation_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\housewarming.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\professional_events.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\retirement_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\sleepover_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\sports_and_games.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\summer_and_pool.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\bachelor_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\bridal_shower.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\engagement_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\rehearsal_dinner.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\save_the_date.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\wedding_invitation.dart C:\\FlutterProjects\\invitor\\lib\\gallery_screen\\gallery_behavior.dart C:\\FlutterProjects\\invitor\\lib\\gallery_screen\\gallery_ui.dart C:\\FlutterProjects\\invitor\\lib\\home_screen\\home_behavior.dart C:\\FlutterProjects\\invitor\\lib\\home_screen\\home_ui.dart C:\\FlutterProjects\\invitor\\lib\\local_database\\domain\\model\\contacts.dart C:\\FlutterProjects\\invitor\\lib\\local_database\\repository\\database_client\\contact_database_provider.dart C:\\FlutterProjects\\invitor\\lib\\local_database\\repository\\database_client\\db_client.dart C:\\FlutterProjects\\invitor\\lib\\main.dart C:\\FlutterProjects\\invitor\\lib\\routes.dart C:\\FlutterProjects\\invitor\\lib\\splash_screen\\splash_behavior.dart C:\\FlutterProjects\\invitor\\lib\\splash_screen\\splash_ui.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_behavior.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\announcements_sub_category_buttons.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\babies_and_kids_sub_category_buttons.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\birthday_sub_category_buttons.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\party_sub_category_buttons.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\sub_category_selection_button.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\wedding_sub_category_buttons.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion_provider.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_ui.dart C:\\FlutterProjects\\invitor\\pubspec.yaml C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\android_intent_plus-3.0.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\animated_text_kit-4.2.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\animations-2.0.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\async-2.8.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\boolean_selector-2.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\characters.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\characters.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\characters_impl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\extensions.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\grapheme_clusters\\breaks.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\grapheme_clusters\\constants.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\grapheme_clusters\\table.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\charcode-1.3.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\lib\\clock.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\lib\\src\\clock.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\lib\\src\\default.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\lib\\src\\stopwatch.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\collection.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\algorithms.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\canonicalized_map.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_list.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_map.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\comparators.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\empty_unmodifiable_set.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality_map.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality_set.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\functions.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\iterable_extensions.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\iterable_zip.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\list_extensions.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\priority_queue.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\queue_list.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\union_set.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\union_set_controller.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\unmodifiable_wrappers.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\wrappers.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\assets\\CupertinoIcons.ttf C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\fake_async-1.2.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\lib\\ffi.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\lib\\src\\allocation.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\lib\\src\\arena.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\lib\\src\\utf16.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\lib\\src\\utf8.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\completed_ffmpeg_execution.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\ffmpeg_execution.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\flutter_ffmpeg.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\log.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\media_information.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\statistics.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\stream_information.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_lints-1.0.4\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\flutter_slidable.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\src\\widgets\\fractionnally_aligned_sized_box.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\src\\widgets\\slidable.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\src\\widgets\\slidable_action_pane.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\src\\widgets\\slidable_dismissal.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\src\\widgets\\slide_action.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\fluttertoast-8.0.8\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\fluttertoast-8.0.8\\assets\\toastify.css C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\fluttertoast-8.0.8\\assets\\toastify.js C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\fluttertoast-8.0.8\\lib\\fluttertoast.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\font_awesome_flutter-9.2.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\font_awesome_flutter-9.2.0\\lib\\fonts\\fa-brands-400.ttf C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\font_awesome_flutter-9.2.0\\lib\\fonts\\fa-regular-400.ttf C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\font_awesome_flutter-9.2.0\\lib\\fonts\\fa-solid-900.ttf C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\date_symbols.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\intl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\number_symbols.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\number_symbols_data.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\date_format_internal.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\global_state.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\bidi.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\bidi_formatter.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\compact_number_format.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\constants.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\date_builder.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\date_computation.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\date_format.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\date_format_field.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\intl_stream.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\micro_money.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\number_format.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\number_format_parser.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\number_parser.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\regexp.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\string_iterator.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\text_direction.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl_helpers.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\plural_rules.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\js-0.6.3\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\lints-1.0.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\matcher-0.12.10\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta_meta.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\mime.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\bound_multipart_stream.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\char_code.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\default_extension_map.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\magic_number.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\mime_multipart_transformer.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\mime_shared.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\mime_type.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\nested-1.0.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\nested-1.0.0\\lib\\nested.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\open_file.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\common\\open_result.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\common\\parse_args.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\plaform\\linux.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\plaform\\macos.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\plaform\\open_file.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\plaform\\windows.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\path.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\characters.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\context.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\internal_style.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\parsed_path.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\path_exception.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\path_map.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\path_set.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\style.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\style\\posix.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\style\\url.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\style\\windows.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler-8.3.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler-8.3.0\\lib\\permission_handler.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\permission_handler_platform_interface.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\method_channel\\method_channel_permission_handler.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\method_channel\\utils\\codec.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\permission_handler_platform_interface.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\permission_status.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\permissions.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\service_status.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\platform-3.0.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\plugin_platform_interface-2.0.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\plugin_platform_interface-2.0.2\\lib\\plugin_platform_interface.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\async_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\change_notifier_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\consumer.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\deferred_inherited_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\devtool.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\inherited_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\listenable_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\proxy_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\reassemble_handler.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\selector.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\value_listenable_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\share-2.0.4\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\share-2.0.4\\lib\\share.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\source_span-1.8.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\sqflite.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\sql.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\sqlite_api.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\compat.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\constant.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\exception_impl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\factory_impl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\services_impl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\sqflite_impl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\sqflite_import.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\sql_builder.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\utils\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\sql.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\sqlite_api.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\arg_utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\batch.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\collection_utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\compat.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\constant.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\database.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\database_mixin.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\env_utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\exception.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\factory.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\factory_mixin.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\mixin\\constant.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\mixin\\factory.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\open_options.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\sql_builder.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\transaction.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\value_utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\utils\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\stack_trace-1.10.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\stream_channel-2.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\string_scanner-1.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\synchronized-3.0.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\synchronized-3.0.0\\lib\\src\\basic_lock.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\synchronized-3.0.0\\lib\\src\\reentrant_lock.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\synchronized-3.0.0\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\synchronized-3.0.0\\lib\\synchronized.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\term_glyph-1.2.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\test_api-0.4.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\lib\\src\\typed_buffer.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\lib\\typed_buffers.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\hash.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\aabb2.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\aabb3.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\colors.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\constants.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\error_helpers.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\frustum.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\intersection_result.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\matrix2.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\matrix3.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\matrix4.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\obb3.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\opengl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\plane.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\quad.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\quaternion.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\ray.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\sphere.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\third_party\\noise.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\triangle.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\utilities.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\vector.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\vector2.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\vector3.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\vector4.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\vector_math_64.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vibration-1.7.4-nullsafety.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vibration-1.7.4-nullsafety.0\\lib\\vibration.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vibration_web-1.6.3-nullsafety.0\\LICENSE C:\\flutter-sdk\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\flutter-sdk\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\flutter-sdk\\bin\\internal\\engine.version C:\\flutter-sdk\\packages\\flutter\\LICENSE C:\\flutter-sdk\\packages\\flutter\\lib\\animation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\cupertino.dart C:\\flutter-sdk\\packages\\flutter\\lib\\foundation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\gestures.dart C:\\flutter-sdk\\packages\\flutter\\lib\\material.dart C:\\flutter-sdk\\packages\\flutter\\lib\\painting.dart C:\\flutter-sdk\\packages\\flutter\\lib\\physics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\rendering.dart C:\\flutter-sdk\\packages\\flutter\\lib\\scheduler.dart C:\\flutter-sdk\\packages\\flutter\\lib\\semantics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\services.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\about.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\app.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\card.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\date.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\date_picker_deprecated.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\feedback.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\flat_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\flutter_logo.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\material.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\outline_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\page.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\raised_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\search.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\time.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\toggleable.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\keyboard_key.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\keyboard_maps.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\animated_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_actions.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\text_editing_action.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\flutter-sdk\\packages\\flutter\\lib\\widgets.dart C:\\flutter-sdk\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart C:\\flutter-sdk\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/debug/libs.jar b/android/app/build/intermediates/flutter/debug/libs.jar new file mode 100755 index 0000000..089bca7 Binary files /dev/null and b/android/app/build/intermediates/flutter/debug/libs.jar differ diff --git a/android/app/build/intermediates/flutter/release/.last_build_id b/android/app/build/intermediates/flutter/release/.last_build_id new file mode 100755 index 0000000..cd07750 --- /dev/null +++ b/android/app/build/intermediates/flutter/release/.last_build_id @@ -0,0 +1 @@ +d0211c2d414a80cadba2880a9c1a75f0 \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/release/arm64-v8a/app.so b/android/app/build/intermediates/flutter/release/arm64-v8a/app.so new file mode 100755 index 0000000..10fb85d Binary files /dev/null and b/android/app/build/intermediates/flutter/release/arm64-v8a/app.so differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/AssetManifest.json b/android/app/build/intermediates/flutter/release/flutter_assets/AssetManifest.json new file mode 100755 index 0000000..1bdc296 --- /dev/null +++ b/android/app/build/intermediates/flutter/release/flutter_assets/AssetManifest.json @@ -0,0 +1 @@ +{"assets/images/animated_text_gifs/colorize.gif":["assets/images/animated_text_gifs/colorize.gif"],"assets/images/animated_text_gifs/fade.gif":["assets/images/animated_text_gifs/fade.gif"],"assets/images/animated_text_gifs/flicker.gif":["assets/images/animated_text_gifs/flicker.gif"],"assets/images/animated_text_gifs/rotate.gif":["assets/images/animated_text_gifs/rotate.gif"],"assets/images/animated_text_gifs/scale.gif":["assets/images/animated_text_gifs/scale.gif"],"assets/images/animated_text_gifs/text_liquid_fill.gif":["assets/images/animated_text_gifs/text_liquid_fill.gif"],"assets/images/animated_text_gifs/type_writer.gif":["assets/images/animated_text_gifs/type_writer.gif"],"assets/images/animated_text_gifs/typer.gif":["assets/images/animated_text_gifs/typer.gif"],"assets/images/animated_text_gifs/wavy.gif":["assets/images/animated_text_gifs/wavy.gif"],"assets/images/no_data_found/no_data_found.png":["assets/images/no_data_found/no_data_found.png"],"assets/images/ring.png":["assets/images/ring.png"],"assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg":["assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg"],"assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg":["assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg"],"assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png":["assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png"],"assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png":["assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png"],"fonts/adelicia_script.ttf":["fonts/adelicia_script.ttf"],"fonts/aerotis.ttf":["fonts/aerotis.ttf"],"fonts/alexbrush_regular.ttf":["fonts/alexbrush_regular.ttf"],"fonts/alliana_script.ttf":["fonts/alliana_script.ttf"],"fonts/amaticsc_regular.ttf":["fonts/amaticsc_regular.ttf"],"fonts/amelia_giovani.otf":["fonts/amelia_giovani.otf"],"fonts/angelina.TTF":["fonts/angelina.TTF"],"fonts/ardeco.ttf":["fonts/ardeco.ttf"],"fonts/arimo_regular.ttf":["fonts/arimo_regular.ttf"],"fonts/aspire.ttf":["fonts/aspire.ttf"],"fonts/be_bright.ttf":["fonts/be_bright.ttf"],"fonts/bellasia.ttf":["fonts/bellasia.ttf"],"fonts/bentham.otf":["fonts/bentham.otf"],"fonts/billabong.ttf":["fonts/billabong.ttf"],"fonts/blingtastic_script.ttf":["fonts/blingtastic_script.ttf"],"fonts/brayden_script_regular.otf":["fonts/brayden_script_regular.otf"],"fonts/cathiy_betiey.ttf":["fonts/cathiy_betiey.ttf"],"fonts/cheque_regular.otf":["fonts/cheque_regular.otf"],"fonts/chopin_script.otf":["fonts/chopin_script.otf"],"fonts/cinzel_regular.otf":["fonts/cinzel_regular.otf"],"fonts/com_four_t_fine_regular.ttf":["fonts/com_four_t_fine_regular.ttf"],"fonts/courgette_regular.ttf":["fonts/courgette_regular.ttf"],"fonts/engry.otf":["fonts/engry.otf"],"fonts/great_vibes_regular.ttf":["fonts/great_vibes_regular.ttf"],"fonts/handkerchief.ttf":["fonts/handkerchief.ttf"],"fonts/intuitive.ttf":["fonts/intuitive.ttf"],"fonts/jenna_sue.ttf":["fonts/jenna_sue.ttf"],"fonts/josefin_slab_regular.ttf":["fonts/josefin_slab_regular.ttf"],"fonts/kreon_bold.ttf":["fonts/kreon_bold.ttf"],"fonts/kreon_regular.ttf":["fonts/kreon_regular.ttf"],"fonts/lato_regular.ttf":["fonts/lato_regular.ttf"],"fonts/learning_curve_pro.ttf":["fonts/learning_curve_pro.ttf"],"fonts/let_trace_basic.otf":["fonts/let_trace_basic.otf"],"fonts/libre_baskerville_italic.ttf":["fonts/libre_baskerville_italic.ttf"],"fonts/libre_baskerville_regular.ttf":["fonts/libre_baskerville_regular.ttf"],"fonts/lobster.otf":["fonts/lobster.otf"],"fonts/luckiest_guy.ttf":["fonts/luckiest_guy.ttf"],"fonts/meddon.ttf":["fonts/meddon.ttf"],"fonts/merriweather_italic.ttf":["fonts/merriweather_italic.ttf"],"fonts/monsieurladoulaise.ttf":["fonts/monsieurladoulaise.ttf"],"fonts/mottona.otf":["fonts/mottona.otf"],"fonts/mountains_of_christmas_regular.ttf":["fonts/mountains_of_christmas_regular.ttf"],"fonts/open_sans_bold.ttf":["fonts/open_sans_bold.ttf"],"fonts/open_sans_light.ttf":["fonts/open_sans_light.ttf"],"fonts/oswald_light.ttf":["fonts/oswald_light.ttf"],"fonts/parisienne_regular.ttf":["fonts/parisienne_regular.ttf"],"fonts/patrick_hand.otf":["fonts/patrick_hand.otf"],"fonts/playfair_display_bold.ttf":["fonts/playfair_display_bold.ttf"],"fonts/playfair_display_variable_font_weight.ttf":["fonts/playfair_display_variable_font_weight.ttf"],"fonts/quicksand_bold.otf":["fonts/quicksand_bold.otf"],"fonts/quicksand_book.otf":["fonts/quicksand_book.otf"],"fonts/ribeye_marrow_regular.ttf":["fonts/ribeye_marrow_regular.ttf"],"fonts/rozha_one_regular.ttf":["fonts/rozha_one_regular.ttf"],"fonts/sail_regular.otf":["fonts/sail_regular.otf"],"fonts/shellia.ttf":["fonts/shellia.ttf"],"fonts/sleeplesson_regular.ttf":["fonts/sleeplesson_regular.ttf"],"fonts/spicy_rice_regular.otf":["fonts/spicy_rice_regular.otf"],"fonts/stint_ultra_expanded_regular.ttf":["fonts/stint_ultra_expanded_regular.ttf"],"fonts/tex_gyretermes_regular.otf":["fonts/tex_gyretermes_regular.otf"],"fonts/vast_shadow_regular.ttf":["fonts/vast_shadow_regular.ttf"],"fonts/yesteryear_regular.ttf":["fonts/yesteryear_regular.ttf"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"],"packages/fluttertoast/assets/toastify.css":["packages/fluttertoast/assets/toastify.css"],"packages/fluttertoast/assets/toastify.js":["packages/fluttertoast/assets/toastify.js"],"packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf":["packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf"],"packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf":["packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf"],"packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf":["packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf"]} \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/FontManifest.json b/android/app/build/intermediates/flutter/release/flutter_assets/FontManifest.json new file mode 100755 index 0000000..6b5f9b6 --- /dev/null +++ b/android/app/build/intermediates/flutter/release/flutter_assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"PlayfairDisplay","fonts":[{"asset":"fonts/playfair_display_variable_font_weight.ttf"}]},{"family":"Billabong","fonts":[{"asset":"fonts/billabong.ttf"}]},{"family":"Arimo","fonts":[{"asset":"fonts/arimo_regular.ttf"}]},{"family":"TeXGyreTermes","fonts":[{"asset":"fonts/tex_gyretermes_regular.otf"}]},{"family":"GreatVibes","fonts":[{"asset":"fonts/great_vibes_regular.ttf"}]},{"family":"LearningCurvePro","fonts":[{"asset":"fonts/learning_curve_pro.ttf"}]},{"family":"OpenSans","fonts":[{"asset":"fonts/open_sans_light.ttf"}]},{"family":"OpenSansBold","fonts":[{"asset":"fonts/open_sans_bold.ttf"}]},{"family":"COM4t","fonts":[{"asset":"fonts/com_four_t_fine_regular.ttf"}]},{"family":"MountainsOfChristmas","fonts":[{"asset":"fonts/mountains_of_christmas_regular.ttf"}]},{"family":"Quicksand","fonts":[{"asset":"fonts/quicksand_book.otf"}]},{"family":"QuicksandBold","fonts":[{"asset":"fonts/quicksand_bold.otf"}]},{"family":"AdeliciaScript","fonts":[{"asset":"fonts/adelicia_script.ttf"}]},{"family":"Parisienne","fonts":[{"asset":"fonts/parisienne_regular.ttf"}]},{"family":"PatrickHand","fonts":[{"asset":"fonts/patrick_hand.otf"}]},{"family":"SpicyRice","fonts":[{"asset":"fonts/spicy_rice_regular.otf"}]},{"family":"JennaSue","fonts":[{"asset":"fonts/jenna_sue.ttf"}]},{"family":"JosefinSlab","fonts":[{"asset":"fonts/josefin_slab_regular.ttf"}]},{"family":"LuckiestGuy","fonts":[{"asset":"fonts/luckiest_guy.ttf"}]},{"family":"Lato","fonts":[{"asset":"fonts/lato_regular.ttf"}]},{"family":"Cinzel","fonts":[{"asset":"fonts/cinzel_regular.otf"}]},{"family":"AmaticSC","fonts":[{"asset":"fonts/amaticsc_regular.ttf"}]},{"family":"Lobster","fonts":[{"asset":"fonts/lobster.otf"}]},{"family":"MerriWeather","fonts":[{"asset":"fonts/merriweather_italic.ttf"}]},{"family":"ChopinScript","fonts":[{"asset":"fonts/chopin_script.otf"}]},{"family":"Courgette","fonts":[{"asset":"fonts/courgette_regular.ttf"}]},{"family":"RozhaOne","fonts":[{"asset":"fonts/rozha_one_regular.ttf"}]},{"family":"AlexBrush","fonts":[{"asset":"fonts/alexbrush_regular.ttf"}]},{"family":"Aspire","fonts":[{"asset":"fonts/aspire.ttf"}]},{"family":"Angelina","fonts":[{"asset":"fonts/angelina.TTF"}]},{"family":"Meddon","fonts":[{"asset":"fonts/meddon.ttf"}]},{"family":"Yesteryear","fonts":[{"asset":"fonts/yesteryear_regular.ttf"}]},{"family":"Ardeco","fonts":[{"asset":"fonts/ardeco.ttf"}]},{"family":"Sail","fonts":[{"asset":"fonts/sail_regular.otf"}]},{"family":"VastShadow","fonts":[{"asset":"fonts/vast_shadow_regular.ttf"}]},{"family":"RibeyeMarrow","fonts":[{"asset":"fonts/ribeye_marrow_regular.ttf"}]},{"family":"LetTrace","fonts":[{"asset":"fonts/let_trace_basic.otf"}]},{"family":"Intuitive","fonts":[{"asset":"fonts/intuitive.ttf"}]},{"family":"Kreon","fonts":[{"asset":"fonts/kreon_regular.ttf"}]},{"family":"KreonBold","fonts":[{"asset":"fonts/kreon_bold.ttf"}]},{"family":"Libre","fonts":[{"asset":"fonts/libre_baskerville_regular.ttf"}]},{"family":"Libreitalic","fonts":[{"asset":"fonts/libre_baskerville_italic.ttf"}]},{"family":"BeBright","fonts":[{"asset":"fonts/be_bright.ttf"}]},{"family":"BraydenScript","fonts":[{"asset":"fonts/brayden_script_regular.otf"}]},{"family":"BlingtasticScript","fonts":[{"asset":"fonts/blingtastic_script.ttf"}]},{"family":"Bentham","fonts":[{"asset":"fonts/bentham.otf"}]},{"family":"StintUltra","fonts":[{"asset":"fonts/stint_ultra_expanded_regular.ttf"}]},{"family":"Cheque","fonts":[{"asset":"fonts/cheque_regular.otf"}]},{"family":"Engry","fonts":[{"asset":"fonts/engry.otf"}]},{"family":"AmeliaGiovani","fonts":[{"asset":"fonts/amelia_giovani.otf"}]},{"family":"Bellasia","fonts":[{"asset":"fonts/bellasia.ttf"}]},{"family":"CathiyBetiey","fonts":[{"asset":"fonts/cathiy_betiey.ttf"}]},{"family":"Sleeplesson","fonts":[{"asset":"fonts/sleeplesson_regular.ttf"}]},{"family":"MonsieurLaDoulaise","fonts":[{"asset":"fonts/monsieurladoulaise.ttf"}]},{"family":"AllianaScript","fonts":[{"asset":"fonts/alliana_script.ttf"}]},{"family":"Oswald","fonts":[{"asset":"fonts/oswald_light.ttf"}]},{"family":"Playfair","fonts":[{"asset":"fonts/playfair_display_bold.ttf"}]},{"family":"Shellia","fonts":[{"asset":"fonts/shellia.ttf"}]},{"family":"Mottona","fonts":[{"asset":"fonts/mottona.otf"}]},{"family":"Handkerchief","fonts":[{"asset":"fonts/handkerchief.ttf"}]},{"family":"Aerotis","fonts":[{"asset":"fonts/aerotis.ttf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]},{"family":"packages/font_awesome_flutter/FontAwesomeBrands","fonts":[{"weight":400,"asset":"packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf"}]},{"family":"packages/font_awesome_flutter/FontAwesomeRegular","fonts":[{"weight":400,"asset":"packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf"}]},{"family":"packages/font_awesome_flutter/FontAwesomeSolid","fonts":[{"weight":900,"asset":"packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf"}]}] \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/NOTICES.Z b/android/app/build/intermediates/flutter/release/flutter_assets/NOTICES.Z new file mode 100755 index 0000000..178c278 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/NOTICES.Z differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/colorize.gif b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/colorize.gif new file mode 100755 index 0000000..22ffa3f Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/colorize.gif differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/fade.gif b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/fade.gif new file mode 100755 index 0000000..5c6d1d2 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/fade.gif differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/flicker.gif b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/flicker.gif new file mode 100755 index 0000000..cb153a2 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/flicker.gif differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/rotate.gif b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/rotate.gif new file mode 100755 index 0000000..330b3fa Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/rotate.gif differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/scale.gif b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/scale.gif new file mode 100755 index 0000000..d93aeed Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/scale.gif differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/text_liquid_fill.gif b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/text_liquid_fill.gif new file mode 100755 index 0000000..6c469f9 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/text_liquid_fill.gif differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/type_writer.gif b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/type_writer.gif new file mode 100755 index 0000000..19ea8ad Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/type_writer.gif differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/typer.gif b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/typer.gif new file mode 100755 index 0000000..1738e77 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/typer.gif differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/wavy.gif b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/wavy.gif new file mode 100755 index 0000000..77b030b Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/animated_text_gifs/wavy.gif differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/no_data_found/no_data_found.png b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/no_data_found/no_data_found.png new file mode 100755 index 0000000..bb8178b Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/no_data_found/no_data_found.png differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/ring.png b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/ring.png new file mode 100755 index 0000000..5bb3575 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/ring.png differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg new file mode 100755 index 0000000..e29d03d Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg new file mode 100755 index 0000000..267525b Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png new file mode 100755 index 0000000..37f8326 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png new file mode 100755 index 0000000..37f8326 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/MaterialIcons-Regular.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/MaterialIcons-Regular.otf new file mode 100755 index 0000000..3246ad5 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/MaterialIcons-Regular.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/adelicia_script.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/adelicia_script.ttf new file mode 100755 index 0000000..ed40b0e Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/adelicia_script.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/aerotis.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/aerotis.ttf new file mode 100755 index 0000000..ce18861 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/aerotis.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/alexbrush_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/alexbrush_regular.ttf new file mode 100755 index 0000000..58c43a9 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/alexbrush_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/alliana_script.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/alliana_script.ttf new file mode 100755 index 0000000..ebfc689 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/alliana_script.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/amaticsc_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/amaticsc_regular.ttf new file mode 100755 index 0000000..f2fb3d3 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/amaticsc_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/amelia_giovani.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/amelia_giovani.otf new file mode 100755 index 0000000..8a1190f Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/amelia_giovani.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/angelina.TTF b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/angelina.TTF new file mode 100755 index 0000000..fe880ab Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/angelina.TTF differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/ardeco.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/ardeco.ttf new file mode 100755 index 0000000..8dd2186 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/ardeco.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/arimo_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/arimo_regular.ttf new file mode 100755 index 0000000..28ec292 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/arimo_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/aspire.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/aspire.ttf new file mode 100755 index 0000000..d8cb199 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/aspire.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/be_bright.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/be_bright.ttf new file mode 100755 index 0000000..410dc79 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/be_bright.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/bellasia.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/bellasia.ttf new file mode 100755 index 0000000..69645c6 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/bellasia.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/bentham.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/bentham.otf new file mode 100755 index 0000000..4e56025 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/bentham.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/billabong.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/billabong.ttf new file mode 100755 index 0000000..0df4bf6 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/billabong.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/blingtastic_script.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/blingtastic_script.ttf new file mode 100755 index 0000000..0cf7922 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/blingtastic_script.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/brayden_script_regular.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/brayden_script_regular.otf new file mode 100755 index 0000000..9e312e0 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/brayden_script_regular.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/cathiy_betiey.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/cathiy_betiey.ttf new file mode 100755 index 0000000..bc9daef Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/cathiy_betiey.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/cheque_regular.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/cheque_regular.otf new file mode 100755 index 0000000..712ca0d Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/cheque_regular.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/chopin_script.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/chopin_script.otf new file mode 100755 index 0000000..e914944 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/chopin_script.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/cinzel_regular.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/cinzel_regular.otf new file mode 100755 index 0000000..2fa4b3e Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/cinzel_regular.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/com_four_t_fine_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/com_four_t_fine_regular.ttf new file mode 100755 index 0000000..b01ca5a Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/com_four_t_fine_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/courgette_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/courgette_regular.ttf new file mode 100755 index 0000000..433766b Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/courgette_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/engry.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/engry.otf new file mode 100755 index 0000000..da4712b Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/engry.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/great_vibes_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/great_vibes_regular.ttf new file mode 100755 index 0000000..fcd2ddd Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/great_vibes_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/handkerchief.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/handkerchief.ttf new file mode 100755 index 0000000..fa65cc8 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/handkerchief.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/intuitive.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/intuitive.ttf new file mode 100755 index 0000000..cbfa2b0 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/intuitive.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/jenna_sue.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/jenna_sue.ttf new file mode 100755 index 0000000..18c7fc6 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/jenna_sue.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/josefin_slab_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/josefin_slab_regular.ttf new file mode 100755 index 0000000..9ac13d1 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/josefin_slab_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/kreon_bold.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/kreon_bold.ttf new file mode 100755 index 0000000..977a6a6 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/kreon_bold.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/kreon_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/kreon_regular.ttf new file mode 100755 index 0000000..b506338 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/kreon_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/lato_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/lato_regular.ttf new file mode 100755 index 0000000..04ea8ef Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/lato_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/learning_curve_pro.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/learning_curve_pro.ttf new file mode 100755 index 0000000..cff2ece Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/learning_curve_pro.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/let_trace_basic.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/let_trace_basic.otf new file mode 100755 index 0000000..d728cdc Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/let_trace_basic.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/libre_baskerville_italic.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/libre_baskerville_italic.ttf new file mode 100755 index 0000000..7a7a9dc Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/libre_baskerville_italic.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/libre_baskerville_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/libre_baskerville_regular.ttf new file mode 100755 index 0000000..3fadf70 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/libre_baskerville_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/lobster.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/lobster.otf new file mode 100755 index 0000000..86effca Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/lobster.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/luckiest_guy.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/luckiest_guy.ttf new file mode 100755 index 0000000..01b535a Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/luckiest_guy.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/meddon.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/meddon.ttf new file mode 100755 index 0000000..dab3a70 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/meddon.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/merriweather_italic.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/merriweather_italic.ttf new file mode 100755 index 0000000..ecaed9a Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/merriweather_italic.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/monsieurladoulaise.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/monsieurladoulaise.ttf new file mode 100755 index 0000000..3d2bf99 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/monsieurladoulaise.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/mottona.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/mottona.otf new file mode 100755 index 0000000..a53f832 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/mottona.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/mountains_of_christmas_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/mountains_of_christmas_regular.ttf new file mode 100755 index 0000000..1e1f9b5 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/mountains_of_christmas_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/open_sans_bold.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/open_sans_bold.ttf new file mode 100755 index 0000000..fd79d43 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/open_sans_bold.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/open_sans_light.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/open_sans_light.ttf new file mode 100755 index 0000000..0d38189 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/open_sans_light.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/oswald_light.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/oswald_light.ttf new file mode 100755 index 0000000..18cac63 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/oswald_light.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/parisienne_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/parisienne_regular.ttf new file mode 100755 index 0000000..ef2db74 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/parisienne_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/patrick_hand.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/patrick_hand.otf new file mode 100755 index 0000000..ac4a0bc Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/patrick_hand.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/playfair_display_bold.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/playfair_display_bold.ttf new file mode 100755 index 0000000..93a59cf Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/playfair_display_bold.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/playfair_display_variable_font_weight.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/playfair_display_variable_font_weight.ttf new file mode 100755 index 0000000..a25e8f3 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/playfair_display_variable_font_weight.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/quicksand_bold.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/quicksand_bold.otf new file mode 100755 index 0000000..4f371fa Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/quicksand_bold.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/quicksand_book.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/quicksand_book.otf new file mode 100755 index 0000000..ee8b12d Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/quicksand_book.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/ribeye_marrow_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/ribeye_marrow_regular.ttf new file mode 100755 index 0000000..4fd058d Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/ribeye_marrow_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/rozha_one_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/rozha_one_regular.ttf new file mode 100755 index 0000000..05775d2 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/rozha_one_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/sail_regular.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/sail_regular.otf new file mode 100755 index 0000000..3cc5e79 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/sail_regular.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/shellia.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/shellia.ttf new file mode 100755 index 0000000..60b6ca4 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/shellia.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/sleeplesson_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/sleeplesson_regular.ttf new file mode 100755 index 0000000..745202d Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/sleeplesson_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/spicy_rice_regular.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/spicy_rice_regular.otf new file mode 100755 index 0000000..b5fca86 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/spicy_rice_regular.otf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/stint_ultra_expanded_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/stint_ultra_expanded_regular.ttf new file mode 100755 index 0000000..ed26e7b Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/stint_ultra_expanded_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/tex_gyretermes_regular.otf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/tex_gyretermes_regular.otf new file mode 100755 index 0000000..e69de29 diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/vast_shadow_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/vast_shadow_regular.ttf new file mode 100755 index 0000000..be4fc19 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/vast_shadow_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/fonts/yesteryear_regular.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/yesteryear_regular.ttf new file mode 100755 index 0000000..76269e8 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/fonts/yesteryear_regular.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf new file mode 100755 index 0000000..79ba7ea Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/packages/fluttertoast/assets/toastify.css b/android/app/build/intermediates/flutter/release/flutter_assets/packages/fluttertoast/assets/toastify.css new file mode 100755 index 0000000..2d0471e --- /dev/null +++ b/android/app/build/intermediates/flutter/release/flutter_assets/packages/fluttertoast/assets/toastify.css @@ -0,0 +1,14 @@ +/** + * Minified by jsDelivr using clean-css v4.2.3. + * Original file: /npm/toastify-js@1.9.3/src/toastify.css + * + * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files + */ +/*! + * Toastify js 1.9.3 + * https://github.com/apvarun/toastify-js + * @license MIT licensed + * + * Copyright (C) 2018 Varun A P + */ +.toastify{padding:12px 20px;color:#fff;display:inline-block;box-shadow:0 3px 6px -1px rgba(0,0,0,.12),0 10px 36px -4px rgba(77,96,232,.3);background:-webkit-linear-gradient(315deg,#73a5ff,#5477f5);background:linear-gradient(135deg,#73a5ff,#5477f5);position:fixed;opacity:0;transition:all .4s cubic-bezier(.215,.61,.355,1);border-radius:2px;cursor:pointer;text-decoration:none;max-width:calc(50% - 20px);z-index:2147483647}.toastify.on{opacity:1}.toast-close{opacity:.4;padding:0 5px}.toastify-right{right:15px}.toastify-left{left:15px}.toastify-top{top:-150px}.toastify-bottom{bottom:-150px}.toastify-rounded{border-radius:25px}.toastify-avatar{width:1.5em;height:1.5em;margin:-7px 5px;border-radius:2px}.toastify-center{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content;max-width:-moz-fit-content}@media only screen and (max-width:360px){.toastify-left,.toastify-right{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content}} \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/packages/fluttertoast/assets/toastify.js b/android/app/build/intermediates/flutter/release/flutter_assets/packages/fluttertoast/assets/toastify.js new file mode 100755 index 0000000..acdff00 --- /dev/null +++ b/android/app/build/intermediates/flutter/release/flutter_assets/packages/fluttertoast/assets/toastify.js @@ -0,0 +1,14 @@ +/** + * Minified by jsDelivr using Terser v5.3.0. + * Original file: /npm/toastify-js@1.9.3/src/toastify.js + * + * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files + */ +/*! + * Toastify js 1.9.3 + * https://github.com/apvarun/toastify-js + * @license MIT licensed + * + * Copyright (C) 2018 Varun A P + */ +!function(t,o){"object"==typeof module&&module.exports?module.exports=o():t.Toastify=o()}(this,(function(t){var o=function(t){return new o.lib.init(t)};function i(t,o){return o.offset[t]?isNaN(o.offset[t])?o.offset[t]:o.offset[t]+"px":"0px"}function s(t,o){return!(!t||"string"!=typeof o)&&!!(t.className&&t.className.trim().split(/\s+/gi).indexOf(o)>-1)}return o.lib=o.prototype={toastify:"1.9.3",constructor:o,init:function(t){return t||(t={}),this.options={},this.toastElement=null,this.options.text=t.text||"Hi there!",this.options.node=t.node,this.options.duration=0===t.duration?0:t.duration||3e3,this.options.selector=t.selector,this.options.callback=t.callback||function(){},this.options.destination=t.destination,this.options.newWindow=t.newWindow||!1,this.options.close=t.close||!1,this.options.gravity="bottom"===t.gravity?"toastify-bottom":"toastify-top",this.options.positionLeft=t.positionLeft||!1,this.options.position=t.position||"",this.options.backgroundColor=t.backgroundColor,this.options.avatar=t.avatar||"",this.options.className=t.className||"",this.options.stopOnFocus=void 0===t.stopOnFocus||t.stopOnFocus,this.options.onClick=t.onClick,this.options.offset=t.offset||{x:0,y:0},this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var t=document.createElement("div");if(t.className="toastify on "+this.options.className,this.options.position?t.className+=" toastify-"+this.options.position:!0===this.options.positionLeft?(t.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):t.className+=" toastify-right",t.className+=" "+this.options.gravity,this.options.backgroundColor&&(t.style.background=this.options.backgroundColor),this.options.node&&this.options.node.nodeType===Node.ELEMENT_NODE)t.appendChild(this.options.node);else if(t.innerHTML=this.options.text,""!==this.options.avatar){var o=document.createElement("img");o.src=this.options.avatar,o.className="toastify-avatar","left"==this.options.position||!0===this.options.positionLeft?t.appendChild(o):t.insertAdjacentElement("afterbegin",o)}if(!0===this.options.close){var s=document.createElement("span");s.innerHTML="✖",s.className="toast-close",s.addEventListener("click",function(t){t.stopPropagation(),this.removeElement(this.toastElement),window.clearTimeout(this.toastElement.timeOutValue)}.bind(this));var n=window.innerWidth>0?window.innerWidth:screen.width;("left"==this.options.position||!0===this.options.positionLeft)&&n>360?t.insertAdjacentElement("afterbegin",s):t.appendChild(s)}if(this.options.stopOnFocus&&this.options.duration>0){var e=this;t.addEventListener("mouseover",(function(o){window.clearTimeout(t.timeOutValue)})),t.addEventListener("mouseleave",(function(){t.timeOutValue=window.setTimeout((function(){e.removeElement(t)}),e.options.duration)}))}if(void 0!==this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),!0===this.options.newWindow?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),"function"==typeof this.options.onClick&&void 0===this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),this.options.onClick()}.bind(this)),"object"==typeof this.options.offset){var a=i("x",this.options),p=i("y",this.options),r="left"==this.options.position?a:"-"+a,l="toastify-top"==this.options.gravity?p:"-"+p;t.style.transform="translate("+r+","+l+")"}return t},showToast:function(){var t;if(this.toastElement=this.buildToast(),!(t=void 0===this.options.selector?document.body:document.getElementById(this.options.selector)))throw"Root element is not defined";return t.insertBefore(this.toastElement,t.firstChild),o.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(t){t.className=t.className.replace(" on",""),window.setTimeout(function(){this.options.node&&this.options.node.parentNode&&this.options.node.parentNode.removeChild(this.options.node),t.parentNode&&t.parentNode.removeChild(t),this.options.callback.call(t),o.reposition()}.bind(this),400)}},o.reposition=function(){for(var t,o={top:15,bottom:15},i={top:15,bottom:15},n={top:15,bottom:15},e=document.getElementsByClassName("toastify"),a=0;a0?window.innerWidth:screen.width)<=360?(e[a].style[t]=n[t]+"px",n[t]+=p+15):!0===s(e[a],"toastify-left")?(e[a].style[t]=o[t]+"px",o[t]+=p+15):(e[a].style[t]=i[t]+"px",i[t]+=p+15)}return this},o.lib.init.prototype=o.lib,o})); \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf new file mode 100755 index 0000000..2e5b9f1 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf new file mode 100755 index 0000000..6be32ef Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf b/android/app/build/intermediates/flutter/release/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf new file mode 100755 index 0000000..4dd1199 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/flutter_assets/packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf differ diff --git a/android/app/build/intermediates/flutter/release/flutter_build.d b/android/app/build/intermediates/flutter/release/flutter_build.d new file mode 100755 index 0000000..ba19a0e --- /dev/null +++ b/android/app/build/intermediates/flutter/release/flutter_build.d @@ -0,0 +1 @@ + C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\arm64-v8a\\app.so C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\AssetManifest.json C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\FontManifest.json C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\NOTICES.Z C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/animated_text_gifs/colorize.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/animated_text_gifs/fade.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/animated_text_gifs/flicker.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/animated_text_gifs/rotate.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/animated_text_gifs/scale.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/animated_text_gifs/text_liquid_fill.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/animated_text_gifs/type_writer.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/animated_text_gifs/typer.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/animated_text_gifs/wavy.gif C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/no_data_found/no_data_found.png C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/ring.png C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\assets/images/wedding/wedding_invitations/green_bordered_script_geometric_floral_wedding_invitation_customize.png C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/MaterialIcons-Regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/adelicia_script.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/aerotis.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/alexbrush_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/alliana_script.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/amaticsc_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/amelia_giovani.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/angelina.TTF C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/ardeco.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/arimo_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/aspire.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/be_bright.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/bellasia.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/bentham.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/billabong.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/blingtastic_script.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/brayden_script_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/cathiy_betiey.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/cheque_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/chopin_script.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/cinzel_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/com_four_t_fine_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/courgette_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/engry.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/great_vibes_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/handkerchief.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/intuitive.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/jenna_sue.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/josefin_slab_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/kreon_bold.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/kreon_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/lato_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/learning_curve_pro.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/let_trace_basic.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/libre_baskerville_italic.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/libre_baskerville_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/lobster.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/luckiest_guy.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/meddon.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/merriweather_italic.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/monsieurladoulaise.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/mottona.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/mountains_of_christmas_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/open_sans_bold.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/open_sans_light.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/oswald_light.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/parisienne_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/patrick_hand.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/playfair_display_bold.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/playfair_display_variable_font_weight.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/quicksand_bold.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/quicksand_book.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/ribeye_marrow_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/rozha_one_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/sail_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/shellia.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/sleeplesson_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/spicy_rice_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/stint_ultra_expanded_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/tex_gyretermes_regular.otf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/vast_shadow_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\fonts/yesteryear_regular.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\packages/fluttertoast/assets/toastify.css C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\packages/fluttertoast/assets/toastify.js C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf C:\\FlutterProjects\\invitor\\android\\app\\build\\intermediates\\flutter\\release\\flutter_assets\\packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf: C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\colorize.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\fade.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\flicker.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\rotate.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\scale.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\text_liquid_fill.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\type_writer.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\typer.gif C:\\FlutterProjects\\invitor\\assets\\images\\animated_text_gifs\\wavy.gif C:\\FlutterProjects\\invitor\\assets\\images\\no_data_found\\no_data_found.png C:\\FlutterProjects\\invitor\\assets\\images\\ring.png C:\\FlutterProjects\\invitor\\assets\\images\\wedding\\wedding_invitations\\geometric_and_flowers_wedding_invitations.jpeg C:\\FlutterProjects\\invitor\\assets\\images\\wedding\\wedding_invitations\\geometric_and_flowers_wedding_invitations_customize.jpeg C:\\FlutterProjects\\invitor\\assets\\images\\wedding\\wedding_invitations\\green_bordered_script_geometric_floral_wedding_invitation.png C:\\FlutterProjects\\invitor\\assets\\images\\wedding\\wedding_invitations\\green_bordered_script_geometric_floral_wedding_invitation_customize.png C:\\FlutterProjects\\invitor\\fonts\\adelicia_script.ttf C:\\FlutterProjects\\invitor\\fonts\\aerotis.ttf C:\\FlutterProjects\\invitor\\fonts\\alexbrush_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\alliana_script.ttf C:\\FlutterProjects\\invitor\\fonts\\amaticsc_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\amelia_giovani.otf C:\\FlutterProjects\\invitor\\fonts\\angelina.TTF C:\\FlutterProjects\\invitor\\fonts\\ardeco.ttf C:\\FlutterProjects\\invitor\\fonts\\arimo_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\aspire.ttf C:\\FlutterProjects\\invitor\\fonts\\be_bright.ttf C:\\FlutterProjects\\invitor\\fonts\\bellasia.ttf C:\\FlutterProjects\\invitor\\fonts\\bentham.otf C:\\FlutterProjects\\invitor\\fonts\\billabong.ttf C:\\FlutterProjects\\invitor\\fonts\\blingtastic_script.ttf C:\\FlutterProjects\\invitor\\fonts\\brayden_script_regular.otf C:\\FlutterProjects\\invitor\\fonts\\cathiy_betiey.ttf C:\\FlutterProjects\\invitor\\fonts\\cheque_regular.otf C:\\FlutterProjects\\invitor\\fonts\\chopin_script.otf C:\\FlutterProjects\\invitor\\fonts\\cinzel_regular.otf C:\\FlutterProjects\\invitor\\fonts\\com_four_t_fine_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\courgette_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\engry.otf C:\\FlutterProjects\\invitor\\fonts\\great_vibes_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\handkerchief.ttf C:\\FlutterProjects\\invitor\\fonts\\intuitive.ttf C:\\FlutterProjects\\invitor\\fonts\\jenna_sue.ttf C:\\FlutterProjects\\invitor\\fonts\\josefin_slab_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\kreon_bold.ttf C:\\FlutterProjects\\invitor\\fonts\\kreon_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\lato_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\learning_curve_pro.ttf C:\\FlutterProjects\\invitor\\fonts\\let_trace_basic.otf C:\\FlutterProjects\\invitor\\fonts\\libre_baskerville_italic.ttf C:\\FlutterProjects\\invitor\\fonts\\libre_baskerville_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\lobster.otf C:\\FlutterProjects\\invitor\\fonts\\luckiest_guy.ttf C:\\FlutterProjects\\invitor\\fonts\\meddon.ttf C:\\FlutterProjects\\invitor\\fonts\\merriweather_italic.ttf C:\\FlutterProjects\\invitor\\fonts\\monsieurladoulaise.ttf C:\\FlutterProjects\\invitor\\fonts\\mottona.otf C:\\FlutterProjects\\invitor\\fonts\\mountains_of_christmas_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\open_sans_bold.ttf C:\\FlutterProjects\\invitor\\fonts\\open_sans_light.ttf C:\\FlutterProjects\\invitor\\fonts\\oswald_light.ttf C:\\FlutterProjects\\invitor\\fonts\\parisienne_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\patrick_hand.otf C:\\FlutterProjects\\invitor\\fonts\\playfair_display_bold.ttf C:\\FlutterProjects\\invitor\\fonts\\playfair_display_variable_font_weight.ttf C:\\FlutterProjects\\invitor\\fonts\\quicksand_bold.otf C:\\FlutterProjects\\invitor\\fonts\\quicksand_book.otf C:\\FlutterProjects\\invitor\\fonts\\ribeye_marrow_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\rozha_one_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\sail_regular.otf C:\\FlutterProjects\\invitor\\fonts\\shellia.ttf C:\\FlutterProjects\\invitor\\fonts\\sleeplesson_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\spicy_rice_regular.otf C:\\FlutterProjects\\invitor\\fonts\\stint_ultra_expanded_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\tex_gyretermes_regular.otf C:\\FlutterProjects\\invitor\\fonts\\vast_shadow_regular.ttf C:\\FlutterProjects\\invitor\\fonts\\yesteryear_regular.ttf C:\\FlutterProjects\\invitor\\lib\\animation_to_video_screen\\animation_to_video_behavior.dart C:\\FlutterProjects\\invitor\\lib\\animation_to_video_screen\\animation_to_video_ui.dart C:\\FlutterProjects\\invitor\\lib\\card_collection_screen\\card_collection_behavior.dart C:\\FlutterProjects\\invitor\\lib\\card_collection_screen\\card_collection_ui.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\card_customization_behavior.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\card_customization_ui.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\card_selection_portion\\wedding\\wedding_invitations\\geometric_and_flowers_wedding_invitations.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\invitation_card_single_text_container.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_animation_text.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_colorize_animated_text.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_fade_animated_text.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_flicker_animation_text.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_scale_animated_text.dart C:\\FlutterProjects\\invitor\\lib\\card_customization_screen\\my_animated_text_kit_portion\\my_type_writer_animated_text.dart C:\\FlutterProjects\\invitor\\lib\\contacts_screen\\contacts_behavior.dart C:\\FlutterProjects\\invitor\\lib\\contacts_screen\\contacts_ui.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\data_collection_behavior.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\data_collection_portion_provider.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\data_collection_ui.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\birth.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\engagement.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\graduation.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\memorial.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\moving.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\pregnancy.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\save_the_marriage_date.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\announcements\\wedding.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\babies_and_kids_baby_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\babies_and_kids_first_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\babies_and_kids_kids_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\baby_shower.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\baby_sprinkle.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\baptism_and_christening.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\birth_announcements.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\first_communion.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\gender_reveal.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\babies_and_kids\\sip_and_see.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\birthday\\1st_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\birthday\\baby_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\birthday\\kids_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\birthday\\men_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\birthday\\women_birthday.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\data_collection_text_field.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\anniversary.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\bbq_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\brunch.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\cocktail_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\dinner_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\family_reunion.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\graduation_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\housewarming.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\professional_events.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\retirement_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\sleepover_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\sports_and_games.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\party\\summer_and_pool.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\bachelor_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\bridal_shower.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\engagement_party.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\rehearsal_dinner.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\save_the_date.dart C:\\FlutterProjects\\invitor\\lib\\data_collection_screen\\event_data_collection_portion\\wedding\\wedding_invitation.dart C:\\FlutterProjects\\invitor\\lib\\gallery_screen\\gallery_behavior.dart C:\\FlutterProjects\\invitor\\lib\\gallery_screen\\gallery_ui.dart C:\\FlutterProjects\\invitor\\lib\\home_screen\\home_behavior.dart C:\\FlutterProjects\\invitor\\lib\\home_screen\\home_ui.dart C:\\FlutterProjects\\invitor\\lib\\local_database\\domain\\model\\contacts.dart C:\\FlutterProjects\\invitor\\lib\\local_database\\repository\\database_client\\contact_database_provider.dart C:\\FlutterProjects\\invitor\\lib\\local_database\\repository\\database_client\\db_client.dart C:\\FlutterProjects\\invitor\\lib\\main.dart C:\\FlutterProjects\\invitor\\lib\\routes.dart C:\\FlutterProjects\\invitor\\lib\\splash_screen\\splash_behavior.dart C:\\FlutterProjects\\invitor\\lib\\splash_screen\\splash_ui.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_behavior.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\announcements_sub_category_buttons.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\babies_and_kids_sub_category_buttons.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\birthday_sub_category_buttons.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\party_sub_category_buttons.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\sub_category_selection_button.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion\\wedding_sub_category_buttons.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_portion_provider.dart C:\\FlutterProjects\\invitor\\lib\\sub_category_selection_screen\\sub_category_selection_ui.dart C:\\FlutterProjects\\invitor\\pubspec.yaml C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\android_intent_plus-3.0.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\animated_text_kit-4.2.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\animations-2.0.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\async-2.8.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\boolean_selector-2.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\characters.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\characters.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\characters_impl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\extensions.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\grapheme_clusters\\breaks.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\grapheme_clusters\\constants.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.1.0\\lib\\src\\grapheme_clusters\\table.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\charcode-1.3.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\lib\\clock.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\lib\\src\\clock.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\lib\\src\\default.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\lib\\src\\stopwatch.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\collection.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\algorithms.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\canonicalized_map.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_list.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_map.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\comparators.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\empty_unmodifiable_set.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality_map.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality_set.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\functions.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\iterable_extensions.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\iterable_zip.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\list_extensions.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\priority_queue.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\queue_list.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\union_set.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\union_set_controller.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\unmodifiable_wrappers.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\wrappers.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\assets\\CupertinoIcons.ttf C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\fake_async-1.2.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\lib\\ffi.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\lib\\src\\allocation.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\lib\\src\\arena.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\lib\\src\\utf16.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\ffi-1.1.2\\lib\\src\\utf8.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\completed_ffmpeg_execution.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\ffmpeg_execution.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\flutter_ffmpeg.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\log.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\media_information.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\statistics.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_ffmpeg-0.4.2\\lib\\stream_information.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_lints-1.0.4\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\flutter_slidable.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\src\\widgets\\fractionnally_aligned_sized_box.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\src\\widgets\\slidable.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\src\\widgets\\slidable_action_pane.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\src\\widgets\\slidable_dismissal.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_slidable-0.6.0\\lib\\src\\widgets\\slide_action.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\fluttertoast-8.0.8\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\fluttertoast-8.0.8\\assets\\toastify.css C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\fluttertoast-8.0.8\\assets\\toastify.js C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\fluttertoast-8.0.8\\lib\\fluttertoast.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\font_awesome_flutter-9.2.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\font_awesome_flutter-9.2.0\\lib\\fonts\\fa-brands-400.ttf C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\font_awesome_flutter-9.2.0\\lib\\fonts\\fa-regular-400.ttf C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\font_awesome_flutter-9.2.0\\lib\\fonts\\fa-solid-900.ttf C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\date_symbols.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\intl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\number_symbols.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\number_symbols_data.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\date_format_internal.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\global_state.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\bidi.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\bidi_formatter.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\compact_number_format.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\constants.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\date_builder.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\date_computation.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\date_format.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\date_format_field.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\intl_stream.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\micro_money.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\number_format.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\number_format_parser.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\number_parser.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\regexp.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\string_iterator.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl\\text_direction.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\intl_helpers.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\intl-0.17.0\\lib\\src\\plural_rules.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\js-0.6.3\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\lints-1.0.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\matcher-0.12.10\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta_meta.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\mime.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\bound_multipart_stream.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\char_code.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\default_extension_map.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\magic_number.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\mime_multipart_transformer.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\mime_shared.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\mime-1.0.1\\lib\\src\\mime_type.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\nested-1.0.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\nested-1.0.0\\lib\\nested.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\open_file.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\common\\open_result.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\common\\parse_args.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\plaform\\linux.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\plaform\\macos.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\plaform\\open_file.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\open_file-3.2.1\\lib\\src\\plaform\\windows.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\path.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\characters.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\context.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\internal_style.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\parsed_path.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\path_exception.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\path_map.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\path_set.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\style.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\style\\posix.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\style\\url.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\style\\windows.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler-8.3.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler-8.3.0\\lib\\permission_handler.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\permission_handler_platform_interface.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\method_channel\\method_channel_permission_handler.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\method_channel\\utils\\codec.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\permission_handler_platform_interface.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\permission_status.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\permissions.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\permission_handler_platform_interface-3.7.0\\lib\\src\\service_status.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\platform-3.0.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\plugin_platform_interface-2.0.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\plugin_platform_interface-2.0.2\\lib\\plugin_platform_interface.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\async_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\change_notifier_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\consumer.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\deferred_inherited_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\devtool.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\inherited_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\listenable_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\proxy_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\reassemble_handler.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\selector.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\provider-6.0.1\\lib\\src\\value_listenable_provider.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\share-2.0.4\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\share-2.0.4\\lib\\share.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\source_span-1.8.1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\sqflite.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\sql.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\sqlite_api.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\compat.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\constant.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\exception_impl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\factory_impl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\services_impl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\sqflite_impl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\sqflite_import.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\sql_builder.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite-2.0.0+4\\lib\\utils\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\sql.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\sqlite_api.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\arg_utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\batch.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\collection_utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\compat.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\constant.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\database.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\database_mixin.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\env_utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\exception.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\factory.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\factory_mixin.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\mixin\\constant.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\mixin\\factory.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\open_options.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\sql_builder.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\transaction.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\src\\value_utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\sqflite_common-2.0.1+1\\lib\\utils\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\stack_trace-1.10.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\stream_channel-2.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\string_scanner-1.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\synchronized-3.0.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\synchronized-3.0.0\\lib\\src\\basic_lock.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\synchronized-3.0.0\\lib\\src\\reentrant_lock.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\synchronized-3.0.0\\lib\\src\\utils.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\synchronized-3.0.0\\lib\\synchronized.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\term_glyph-1.2.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\test_api-0.4.2\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\lib\\src\\typed_buffer.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\lib\\typed_buffers.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\hash.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\aabb2.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\aabb3.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\colors.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\constants.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\error_helpers.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\frustum.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\intersection_result.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\matrix2.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\matrix3.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\matrix4.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\obb3.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\opengl.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\plane.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\quad.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\quaternion.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\ray.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\sphere.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\third_party\\noise.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\triangle.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\utilities.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\vector.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\vector2.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\vector3.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\src\\vector_math_64\\vector4.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.0\\lib\\vector_math_64.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vibration-1.7.4-nullsafety.0\\LICENSE C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vibration-1.7.4-nullsafety.0\\lib\\vibration.dart C:\\flutter-sdk\\.pub-cache\\hosted\\pub.dartlang.org\\vibration_web-1.6.3-nullsafety.0\\LICENSE C:\\flutter-sdk\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\flutter-sdk\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\flutter-sdk\\bin\\internal\\engine.version C:\\flutter-sdk\\packages\\flutter\\LICENSE C:\\flutter-sdk\\packages\\flutter\\lib\\animation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\cupertino.dart C:\\flutter-sdk\\packages\\flutter\\lib\\foundation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\gestures.dart C:\\flutter-sdk\\packages\\flutter\\lib\\material.dart C:\\flutter-sdk\\packages\\flutter\\lib\\painting.dart C:\\flutter-sdk\\packages\\flutter\\lib\\physics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\rendering.dart C:\\flutter-sdk\\packages\\flutter\\lib\\scheduler.dart C:\\flutter-sdk\\packages\\flutter\\lib\\semantics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\services.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\about.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\app.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\card.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\date.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\date_picker_deprecated.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\feedback.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\flat_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\flutter_logo.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\material.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\outline_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\page.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\raised_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\search.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\time.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\toggleable.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\keyboard_key.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\keyboard_maps.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\animated_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_actions.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\text_editing_action.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\flutter-sdk\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\flutter-sdk\\packages\\flutter\\lib\\widgets.dart C:\\flutter-sdk\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\android.dart C:\\flutter-sdk\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart C:\\flutter-sdk\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart \ No newline at end of file diff --git a/android/app/build/intermediates/flutter/release/libs.jar b/android/app/build/intermediates/flutter/release/libs.jar new file mode 100755 index 0000000..7df7fb5 Binary files /dev/null and b/android/app/build/intermediates/flutter/release/libs.jar differ diff --git a/android/app/build/intermediates/incremental/mergeDebugAssets/merger.xml b/android/app/build/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100755 index 0000000..bac8baa --- /dev/null +++ b/android/app/build/intermediates/incremental/mergeDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/android/app/build/intermediates/incremental/mergeReleaseAssets/merger.xml b/android/app/build/intermediates/incremental/mergeReleaseAssets/merger.xml new file mode 100755 index 0000000..488a1ca --- /dev/null +++ b/android/app/build/intermediates/incremental/mergeReleaseAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_low_normal.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_low_normal.9.png new file mode 100755 index 0000000..af91f5e Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_low_normal.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png new file mode 100755 index 0000000..1602ab8 Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_normal.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_normal.9.png new file mode 100755 index 0000000..6ebed8b Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_normal.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png new file mode 100755 index 0000000..6193822 Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png new file mode 100755 index 0000000..6f37a22 Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_low_normal.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_low_normal.9.png new file mode 100755 index 0000000..62de9d7 Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_low_normal.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png new file mode 100755 index 0000000..eaabd93 Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_normal.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_normal.9.png new file mode 100755 index 0000000..aa239b3 Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_normal.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png new file mode 100755 index 0000000..62d8622 Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png new file mode 100755 index 0000000..c286875 Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-v21/launch_background.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-v21/launch_background.xml new file mode 100755 index 0000000..f74085f --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-v21/notification_action_background.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-v21/notification_action_background.xml new file mode 100755 index 0000000..a9ea90a --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-v21/notification_action_background.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png new file mode 100755 index 0000000..8c884de Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png new file mode 100755 index 0000000..32e00be Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_normal.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_normal.9.png new file mode 100755 index 0000000..bdf477b Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_normal.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png new file mode 100755 index 0000000..5c4da74 Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png new file mode 100755 index 0000000..9128e62 Binary files /dev/null and b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png differ diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/corner.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/corner.xml new file mode 100755 index 0000000..341a711 --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/corner.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/launch_background.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/launch_background.xml new file mode 100755 index 0000000..304732f --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_bg.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_bg.xml new file mode 100755 index 0000000..1232b4c --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_bg.xml @@ -0,0 +1,24 @@ + + + + + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_bg_low.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_bg_low.xml new file mode 100755 index 0000000..72e58ae --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_bg_low.xml @@ -0,0 +1,23 @@ + + + + + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_icon_background.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_icon_background.xml new file mode 100755 index 0000000..490a797 --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_icon_background.xml @@ -0,0 +1,22 @@ + + + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_tile_bg.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_tile_bg.xml new file mode 100755 index 0000000..8eee7ef --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/notification_tile_bg.xml @@ -0,0 +1,22 @@ + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/toast_bg.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/toast_bg.xml new file mode 100755 index 0000000..6c99b31 --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/drawable/toast_bg.xml @@ -0,0 +1,14 @@ + + + + + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v16/notification_template_custom_big.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v16/notification_template_custom_big.xml new file mode 100755 index 0000000..d0519dc --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v16/notification_template_custom_big.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_action.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_action.xml new file mode 100755 index 0000000..7199c25 --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_action.xml @@ -0,0 +1,41 @@ + + + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_action_tombstone.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_action_tombstone.xml new file mode 100755 index 0000000..7ef38fa --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_action_tombstone.xml @@ -0,0 +1,48 @@ + + + + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_template_custom_big.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_template_custom_big.xml new file mode 100755 index 0000000..9e3666e --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_template_custom_big.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_template_icon_group.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_template_icon_group.xml new file mode 100755 index 0000000..8fadd67 --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/layout-v21/notification_template_icon_group.xml @@ -0,0 +1,42 @@ + + + + + + + diff --git a/android/app/build/intermediates/merged-not-compiled-resources/release/layout/custom_dialog.xml b/android/app/build/intermediates/merged-not-compiled-resources/release/layout/custom_dialog.xml new file mode 100755 index 0000000..47a1b12 --- /dev/null +++ b/android/app/build/intermediates/merged-not-compiled-resources/release/layout/custom_dialog.xml @@ -0,0 +1,14 @@ + + + +