Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mrusamamuzaffar committed Dec 10, 2022
0 parents commit 5e04711
Show file tree
Hide file tree
Showing 1,404 changed files with 53,465 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .gitignore
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
10 changes: 10 additions & 0 deletions .metadata
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
16 changes: 16 additions & 0 deletions README.md
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.
30 changes: 30 additions & 0 deletions analysis_options.yaml
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
13 changes: 13 additions & 0 deletions android/.gitignore
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
93 changes: 93 additions & 0 deletions android/app/build.gradle
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'
}
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";
}
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";
}
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 not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
499af073cc116764f15a9e1e2e4bce44
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"]}
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 not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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}}
Loading

0 comments on commit 5e04711

Please sign in to comment.