-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5e04711
Showing
1,404 changed files
with
53,465 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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' | ||
} |
12 changes: 12 additions & 0 deletions
12
...rated/source/buildConfig/debug/pk/org/cas/f/three/formal/invitor/invitor/BuildConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"; | ||
} |
12 changes: 12 additions & 0 deletions
12
...ted/source/buildConfig/release/pk/org/cas/f/three/formal/invitor/invitor/BuildConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"; | ||
} |
4 changes: 4 additions & 0 deletions
4
android/app/build/intermediates/aapt_proguard_file/release/aapt_rules.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-keep class androidx.core.app.CoreComponentFactory { <init>(); } | ||
-keep class com.crazecoder.openfile.FileProvider { <init>(); } | ||
-keep class io.flutter.plugins.share.ShareFileProvider { <init>(); } | ||
-keep class pk.org.cas.f.three.formal.invitor.invitor.MainActivity { <init>(); } |
Binary file added
BIN
+310 KB
android/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar
Binary file not shown.
Binary file added
BIN
+310 KB
android/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/release/R.jar
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
499af073cc116764f15a9e1e2e4bce44 |
1 change: 1 addition & 0 deletions
1
android/app/build/intermediates/flutter/debug/flutter_assets/AssetManifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"]} |
1 change: 1 addition & 0 deletions
1
android/app/build/intermediates/flutter/debug/flutter_assets/FontManifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"}]}] |
Binary file added
BIN
+66.4 KB
android/app/build/intermediates/flutter/debug/flutter_assets/NOTICES.Z
Binary file not shown.
Binary file added
BIN
+2.65 MB
...ates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/colorize.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+370 KB
...mediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/fade.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+205 KB
...iates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/flicker.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+601 KB
...diates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/rotate.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+880 KB
...ediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/scale.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+469 KB
...tter/debug/flutter_assets/assets/images/animated_text_gifs/text_liquid_fill.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1 MB
...s/flutter/debug/flutter_assets/assets/images/animated_text_gifs/type_writer.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+604 KB
...ediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/typer.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+257 KB
...mediates/flutter/debug/flutter_assets/assets/images/animated_text_gifs/wavy.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.96 KB
...ates/flutter/debug/flutter_assets/assets/images/no_data_found/no_data_found.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+957 KB
...oid/app/build/intermediates/flutter/debug/flutter_assets/assets/images/ring.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.01 MB
...ages/wedding/wedding_invitations/geometric_and_flowers_wedding_invitations.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+828 KB
...ng/wedding_invitations/geometric_and_flowers_wedding_invitations_customize.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+388 KB
...dding_invitations/green_bordered_script_geometric_floral_wedding_invitation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+388 KB
...tations/green_bordered_script_geometric_floral_wedding_invitation_customize.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.24 MB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf
Binary file not shown.
Binary file added
BIN
+156 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/adelicia_script.ttf
Binary file not shown.
Binary file added
BIN
+43.4 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/aerotis.ttf
Binary file not shown.
Binary file added
BIN
+47.9 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/alexbrush_regular.ttf
Binary file not shown.
Binary file added
BIN
+200 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/alliana_script.ttf
Binary file not shown.
Binary file added
BIN
+39 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/amaticsc_regular.ttf
Binary file not shown.
Binary file added
BIN
+88.7 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/amelia_giovani.otf
Binary file not shown.
Binary file added
BIN
+75.2 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/angelina.TTF
Binary file not shown.
Binary file added
BIN
+39.7 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/ardeco.ttf
Binary file not shown.
Binary file added
BIN
+426 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/arimo_regular.ttf
Binary file not shown.
Binary file added
BIN
+29.3 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/aspire.ttf
Binary file not shown.
Binary file added
BIN
+140 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/be_bright.ttf
Binary file not shown.
Binary file added
BIN
+182 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/bellasia.ttf
Binary file not shown.
Binary file added
BIN
+50.9 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/bentham.otf
Binary file not shown.
Binary file added
BIN
+129 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/billabong.ttf
Binary file not shown.
Binary file added
BIN
+77.2 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/blingtastic_script.ttf
Binary file not shown.
Binary file added
BIN
+88.3 KB
...oid/app/build/intermediates/flutter/debug/flutter_assets/fonts/brayden_script_regular.otf
Binary file not shown.
Binary file added
BIN
+172 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cathiy_betiey.ttf
Binary file not shown.
Binary file added
BIN
+37.2 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cheque_regular.otf
Binary file not shown.
Binary file added
BIN
+34.4 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/chopin_script.otf
Binary file not shown.
Binary file added
BIN
+75.1 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/cinzel_regular.otf
Binary file not shown.
Binary file added
BIN
+20.8 KB
...id/app/build/intermediates/flutter/debug/flutter_assets/fonts/com_four_t_fine_regular.ttf
Binary file not shown.
Binary file added
BIN
+119 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/courgette_regular.ttf
Binary file not shown.
Binary file added
BIN
+29.7 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/engry.otf
Binary file not shown.
Binary file added
BIN
+103 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/great_vibes_regular.ttf
Binary file not shown.
Binary file added
BIN
+89.2 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/handkerchief.ttf
Binary file not shown.
Binary file added
BIN
+45 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/intuitive.ttf
Binary file not shown.
Binary file added
BIN
+41.1 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/jenna_sue.ttf
Binary file not shown.
Binary file added
BIN
+108 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/josefin_slab_regular.ttf
Binary file not shown.
Binary file added
BIN
+37.3 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/kreon_bold.ttf
Binary file not shown.
Binary file added
BIN
+36.6 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/kreon_regular.ttf
Binary file not shown.
Binary file added
BIN
+117 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/lato_regular.ttf
Binary file not shown.
Binary file added
BIN
+74.6 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/learning_curve_pro.ttf
Binary file not shown.
Binary file added
BIN
+101 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/let_trace_basic.otf
Binary file not shown.
Binary file added
BIN
+190 KB
...d/app/build/intermediates/flutter/debug/flutter_assets/fonts/libre_baskerville_italic.ttf
Binary file not shown.
Binary file added
BIN
+156 KB
.../app/build/intermediates/flutter/debug/flutter_assets/fonts/libre_baskerville_regular.ttf
Binary file not shown.
Binary file added
BIN
+36.8 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/lobster.otf
Binary file not shown.
Binary file added
BIN
+72 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/luckiest_guy.ttf
Binary file not shown.
Binary file added
BIN
+113 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/meddon.ttf
Binary file not shown.
Binary file added
BIN
+167 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/merriweather_italic.ttf
Binary file not shown.
Binary file added
BIN
+144 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/monsieurladoulaise.ttf
Binary file not shown.
Binary file added
BIN
+16.8 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/mottona.otf
Binary file not shown.
Binary file added
BIN
+120 KB
...build/intermediates/flutter/debug/flutter_assets/fonts/mountains_of_christmas_regular.ttf
Binary file not shown.
Binary file added
BIN
+219 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/open_sans_bold.ttf
Binary file not shown.
Binary file added
BIN
+217 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/open_sans_light.ttf
Binary file not shown.
Binary file added
BIN
+69.9 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/oswald_light.ttf
Binary file not shown.
Binary file added
BIN
+59.8 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/parisienne_regular.ttf
Binary file not shown.
Binary file added
BIN
+33.2 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/patrick_hand.otf
Binary file not shown.
Binary file added
BIN
+209 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/playfair_display_bold.ttf
Binary file not shown.
Binary file added
BIN
+333 KB
...ntermediates/flutter/debug/flutter_assets/fonts/playfair_display_variable_font_weight.ttf
Binary file not shown.
Binary file added
BIN
+36.9 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/quicksand_bold.otf
Binary file not shown.
Binary file added
BIN
+35.8 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/quicksand_book.otf
Binary file not shown.
Binary file added
BIN
+82.9 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/ribeye_marrow_regular.ttf
Binary file not shown.
Binary file added
BIN
+315 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/rozha_one_regular.ttf
Binary file not shown.
Binary file added
BIN
+26.1 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/sail_regular.otf
Binary file not shown.
Binary file added
BIN
+48.9 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/shellia.ttf
Binary file not shown.
Binary file added
BIN
+143 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/sleeplesson_regular.ttf
Binary file not shown.
Binary file added
BIN
+56.1 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/spicy_rice_regular.otf
Binary file not shown.
Binary file added
BIN
+41.8 KB
...p/build/intermediates/flutter/debug/flutter_assets/fonts/stint_ultra_expanded_regular.ttf
Binary file not shown.
Empty file added
0
...oid/app/build/intermediates/flutter/debug/flutter_assets/fonts/tex_gyretermes_regular.otf
Empty file.
Binary file added
BIN
+60.9 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/vast_shadow_regular.ttf
Binary file not shown.
Binary file added
BIN
+63.3 KB
android/app/build/intermediates/flutter/debug/flutter_assets/fonts/yesteryear_regular.ttf
Binary file not shown.
Binary file added
BIN
+4.53 MB
android/app/build/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data
Binary file not shown.
Binary file added
BIN
+38.8 MB
android/app/build/intermediates/flutter/debug/flutter_assets/kernel_blob.bin
Binary file not shown.
Binary file added
BIN
+277 KB
...rmediates/flutter/debug/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf
Binary file not shown.
14 changes: 14 additions & 0 deletions
14
...uild/intermediates/flutter/debug/flutter_assets/packages/fluttertoast/assets/toastify.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* Minified by jsDelivr using clean-css v4.2.3. | ||
* Original file: /npm/[email protected]/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}} |
Oops, something went wrong.