diff --git a/easel/lib/utils/extension_util.dart b/easel/lib/utils/extension_util.dart
index 17acada114..720ca890f2 100644
--- a/easel/lib/utils/extension_util.dart
+++ b/easel/lib/utils/extension_util.dart
@@ -232,7 +232,7 @@ extension GetCoinWithProperDenomination on String {
}
}
- String getEaselInputCoinWithDenomination(String amount) {
+ String getEaselInputCoinWithDenomination(String amount) {
if (this == kUsdSymbol) {
return double.parse(amount).toStringAsFixed(2);
} else if (this == kPylonSymbol) {
diff --git a/evently/.gitignore b/evently/.gitignore
new file mode 100644
index 0000000000..392bfbbe7a
--- /dev/null
+++ b/evently/.gitignore
@@ -0,0 +1,45 @@
+# Miscellaneous
+*.class
+*.log
+*.pyc
+*.swp
+.DS_Store
+.atom/
+.buildlog/
+.history
+.svn/
+migrate_working_dir/
+
+# 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
+.pub-cache/
+.pub/
+/build/
+
+# 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
+
+lib/env.dart
diff --git a/evently/.metadata b/evently/.metadata
new file mode 100644
index 0000000000..d2765fcbec
--- /dev/null
+++ b/evently/.metadata
@@ -0,0 +1,45 @@
+# 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: "54e66469a933b60ddf175f858f82eaeb97e48c8d"
+ channel: "stable"
+
+project_type: app
+
+# Tracks metadata for the flutter migrate command
+migration:
+ platforms:
+ - platform: root
+ create_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ base_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ - platform: android
+ create_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ base_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ - platform: ios
+ create_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ base_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ - platform: linux
+ create_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ base_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ - platform: macos
+ create_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ base_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ - platform: web
+ create_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ base_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ - platform: windows
+ create_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+ base_revision: 54e66469a933b60ddf175f858f82eaeb97e48c8d
+
+ # User provided section
+
+ # List of Local paths (relative to this file) that should be
+ # ignored by the migrate tool.
+ #
+ # Files that are not part of the templates will be ignored by default.
+ unmanaged_files:
+ - 'lib/main.dart'
+ - 'ios/Runner.xcodeproj/project.pbxproj'
diff --git a/evently/README.md b/evently/README.md
new file mode 100644
index 0000000000..1ccda2c495
--- /dev/null
+++ b/evently/README.md
@@ -0,0 +1,16 @@
+# evently
+
+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://docs.flutter.dev/get-started/codelab)
+- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
+
+For help getting started with Flutter development, view the
+[online documentation](https://docs.flutter.dev/), which offers tutorials,
+samples, guidance on mobile development, and a full API reference.
diff --git a/evently/analysis_options.yaml b/evently/analysis_options.yaml
new file mode 100644
index 0000000000..0d2902135c
--- /dev/null
+++ b/evently/analysis_options.yaml
@@ -0,0 +1,28 @@
+# 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.dev/lints.
+ #
+ # 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:
+ # 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/evently/android/.gitignore b/evently/android/.gitignore
new file mode 100644
index 0000000000..6f568019d3
--- /dev/null
+++ b/evently/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/evently/android/app/build.gradle b/evently/android/app/build.gradle
new file mode 100644
index 0000000000..63ae673595
--- /dev/null
+++ b/evently/android/app/build.gradle
@@ -0,0 +1,77 @@
+plugins {
+ id "com.android.application"
+ id "kotlin-android"
+ id "dev.flutter.flutter-gradle-plugin"
+}
+
+def localProperties = new Properties()
+def localPropertiesFile = rootProject.file('local.properties')
+if (localPropertiesFile.exists()) {
+ localPropertiesFile.withReader('UTF-8') { reader ->
+ localProperties.load(reader)
+ }
+}
+
+def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
+if (flutterVersionCode == null) {
+ flutterVersionCode = '1'
+}
+
+def flutterVersionName = localProperties.getProperty('flutter.versionName')
+if (flutterVersionName == null) {
+ flutterVersionName = '1.0'
+}
+
+android {
+ namespace "tech.pylons.evently"
+ compileSdk flutter.compileSdkVersion
+ ndkVersion flutter.ndkVersion
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+
+ kotlinOptions {
+ jvmTarget = '1.8'
+ }
+
+ sourceSets {
+ main.java.srcDirs += 'src/main/kotlin'
+ }
+
+ defaultConfig {
+ // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
+ applicationId "tech.pylons.evently"
+ // You can update the following values to match your application needs.
+ // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
+ minSdkVersion 21
+ targetSdkVersion 33
+ versionCode flutterVersionCode.toInteger()
+ versionName flutterVersionName
+ }
+
+ signingConfigs {
+ debug {
+ storeFile file('keystore.jks')
+ storePassword 'tech.pylons'
+ keyAlias 'key_tech_pylon'
+ keyPassword 'tech.pylons'
+ }
+ }
+
+ buildTypes {
+ release {
+ // TODO: Add your own signing config for the release build.
+ // Signing with the debug keys for now, so `flutter run --release` works.
+ signingConfig signingConfigs.debug
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+flutter {
+ source '../..'
+}
+
+dependencies {}
diff --git a/evently/android/app/src/main/AndroidManifest.xml b/evently/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000..f435665a8b
--- /dev/null
+++ b/evently/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/evently/android/app/src/main/kotlin/tech/pylons/evently/MainActivity.kt b/evently/android/app/src/main/kotlin/tech/pylons/evently/MainActivity.kt
new file mode 100644
index 0000000000..1ffa24feaf
--- /dev/null
+++ b/evently/android/app/src/main/kotlin/tech/pylons/evently/MainActivity.kt
@@ -0,0 +1,7 @@
+package tech.pylons.evently
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity: FlutterActivity(){
+
+}
diff --git a/evently/android/app/src/main/res/drawable-v21/launch_background.xml b/evently/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 0000000000..f74085f3f6
--- /dev/null
+++ b/evently/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/evently/android/app/src/main/res/drawable/launch_background.xml b/evently/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000000..304732f884
--- /dev/null
+++ b/evently/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/evently/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/evently/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000000..db77bb4b7b
Binary files /dev/null and b/evently/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/evently/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/evently/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000000..17987b79bb
Binary files /dev/null and b/evently/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/evently/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/evently/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000000..09d4391482
Binary files /dev/null and b/evently/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/evently/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/evently/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000000..d5f1c8d34e
Binary files /dev/null and b/evently/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/evently/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/evently/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000000..4d6372eebd
Binary files /dev/null and b/evently/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/evently/android/app/src/main/res/values-night/styles.xml b/evently/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 0000000000..06952be745
--- /dev/null
+++ b/evently/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/evently/android/app/src/main/res/values/styles.xml b/evently/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000000..ad467d64f3
--- /dev/null
+++ b/evently/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
diff --git a/evently/android/app/src/profile/AndroidManifest.xml b/evently/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 0000000000..399f6981d5
--- /dev/null
+++ b/evently/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/evently/android/build.gradle b/evently/android/build.gradle
new file mode 100644
index 0000000000..bc157bd1a1
--- /dev/null
+++ b/evently/android/build.gradle
@@ -0,0 +1,18 @@
+allprojects {
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+rootProject.buildDir = '../build'
+subprojects {
+ project.buildDir = "${rootProject.buildDir}/${project.name}"
+}
+subprojects {
+ project.evaluationDependsOn(':app')
+}
+
+tasks.register("clean", Delete) {
+ delete rootProject.buildDir
+}
diff --git a/evently/android/gradle.properties b/evently/android/gradle.properties
new file mode 100644
index 0000000000..598d13fee4
--- /dev/null
+++ b/evently/android/gradle.properties
@@ -0,0 +1,3 @@
+org.gradle.jvmargs=-Xmx4G
+android.useAndroidX=true
+android.enableJetifier=true
diff --git a/evently/android/gradle/wrapper/gradle-wrapper.properties b/evently/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000000..e1ca574ef0
--- /dev/null
+++ b/evently/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,5 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-all.zip
diff --git a/evently/android/settings.gradle b/evently/android/settings.gradle
new file mode 100644
index 0000000000..1d6d19b7f8
--- /dev/null
+++ b/evently/android/settings.gradle
@@ -0,0 +1,26 @@
+pluginManagement {
+ def flutterSdkPath = {
+ def properties = new Properties()
+ file("local.properties").withInputStream { properties.load(it) }
+ def flutterSdkPath = properties.getProperty("flutter.sdk")
+ assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
+ return flutterSdkPath
+ }
+ settings.ext.flutterSdkPath = flutterSdkPath()
+
+ includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
+
+ repositories {
+ google()
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+
+plugins {
+ id "dev.flutter.flutter-plugin-loader" version "1.0.0"
+ id "com.android.application" version "7.3.0" apply false
+ id "org.jetbrains.kotlin.android" version "1.7.10" apply false
+}
+
+include ":app"
diff --git a/evently/assets/fonts/UniversalSans-300.ttf b/evently/assets/fonts/UniversalSans-300.ttf
new file mode 100644
index 0000000000..2b315e8098
Binary files /dev/null and b/evently/assets/fonts/UniversalSans-300.ttf differ
diff --git a/evently/assets/fonts/UniversalSans-400.ttf b/evently/assets/fonts/UniversalSans-400.ttf
new file mode 100644
index 0000000000..839584bf99
Binary files /dev/null and b/evently/assets/fonts/UniversalSans-400.ttf differ
diff --git a/evently/assets/fonts/UniversalSans-500.ttf b/evently/assets/fonts/UniversalSans-500.ttf
new file mode 100644
index 0000000000..9397e37643
Binary files /dev/null and b/evently/assets/fonts/UniversalSans-500.ttf differ
diff --git a/evently/assets/fonts/UniversalSans-600.ttf b/evently/assets/fonts/UniversalSans-600.ttf
new file mode 100644
index 0000000000..44705b9def
Binary files /dev/null and b/evently/assets/fonts/UniversalSans-600.ttf differ
diff --git a/evently/assets/fonts/UniversalSans-750.ttf b/evently/assets/fonts/UniversalSans-750.ttf
new file mode 100644
index 0000000000..f1d841292b
Binary files /dev/null and b/evently/assets/fonts/UniversalSans-750.ttf differ
diff --git a/evently/assets/images/denom_pylon.png b/evently/assets/images/denom_pylon.png
new file mode 100644
index 0000000000..b4e43bc030
Binary files /dev/null and b/evently/assets/images/denom_pylon.png differ
diff --git a/evently/assets/images/denom_usd.png b/evently/assets/images/denom_usd.png
new file mode 100644
index 0000000000..18fdadac06
Binary files /dev/null and b/evently/assets/images/denom_usd.png differ
diff --git a/evently/assets/images/dotted_line.png b/evently/assets/images/dotted_line.png
new file mode 100644
index 0000000000..a42539bee3
Binary files /dev/null and b/evently/assets/images/dotted_line.png differ
diff --git a/evently/assets/images/gifs/loading.gif b/evently/assets/images/gifs/loading.gif
new file mode 100644
index 0000000000..adc3a7d6d7
Binary files /dev/null and b/evently/assets/images/gifs/loading.gif differ
diff --git a/evently/assets/images/host_preview.png b/evently/assets/images/host_preview.png
new file mode 100644
index 0000000000..780b95cc1f
Binary files /dev/null and b/evently/assets/images/host_preview.png differ
diff --git a/evently/assets/images/ipfs_logo.png b/evently/assets/images/ipfs_logo.png
new file mode 100644
index 0000000000..f2f607c46a
Binary files /dev/null and b/evently/assets/images/ipfs_logo.png differ
diff --git a/evently/assets/images/phantom.png b/evently/assets/images/phantom.png
new file mode 100644
index 0000000000..135a21e20c
Binary files /dev/null and b/evently/assets/images/phantom.png differ
diff --git a/evently/assets/images/svg/camera.svg b/evently/assets/images/svg/camera.svg
new file mode 100644
index 0000000000..c0d27cad39
--- /dev/null
+++ b/evently/assets/images/svg/camera.svg
@@ -0,0 +1,3 @@
+
diff --git a/evently/assets/images/svg/dark_purple_single_line.png b/evently/assets/images/svg/dark_purple_single_line.png
new file mode 100644
index 0000000000..8881c70bcd
Binary files /dev/null and b/evently/assets/images/svg/dark_purple_single_line.png differ
diff --git a/evently/assets/images/svg/delete.svg b/evently/assets/images/svg/delete.svg
new file mode 100644
index 0000000000..8848d56905
--- /dev/null
+++ b/evently/assets/images/svg/delete.svg
@@ -0,0 +1,4 @@
+
diff --git a/evently/assets/images/svg/diamond.svg b/evently/assets/images/svg/diamond.svg
new file mode 100644
index 0000000000..4e874f6959
--- /dev/null
+++ b/evently/assets/images/svg/diamond.svg
@@ -0,0 +1,3 @@
+
diff --git a/evently/assets/images/svg/drinks.svg b/evently/assets/images/svg/drinks.svg
new file mode 100644
index 0000000000..982911aaa5
--- /dev/null
+++ b/evently/assets/images/svg/drinks.svg
@@ -0,0 +1,7 @@
+
diff --git a/evently/assets/images/svg/file_type_image.svg b/evently/assets/images/svg/file_type_image.svg
new file mode 100644
index 0000000000..ee05e35217
--- /dev/null
+++ b/evently/assets/images/svg/file_type_image.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/evently/assets/images/svg/gift.svg b/evently/assets/images/svg/gift.svg
new file mode 100644
index 0000000000..20f05015f8
--- /dev/null
+++ b/evently/assets/images/svg/gift.svg
@@ -0,0 +1,3 @@
+
diff --git a/evently/assets/images/svg/grid.svg b/evently/assets/images/svg/grid.svg
new file mode 100644
index 0000000000..7863c25fe6
--- /dev/null
+++ b/evently/assets/images/svg/grid.svg
@@ -0,0 +1,11 @@
+
diff --git a/evently/assets/images/svg/i_icon.svg b/evently/assets/images/svg/i_icon.svg
new file mode 100644
index 0000000000..05391d279d
--- /dev/null
+++ b/evently/assets/images/svg/i_icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/evently/assets/images/svg/light_purple_single_line.png b/evently/assets/images/svg/light_purple_single_line.png
new file mode 100644
index 0000000000..7a2914d411
Binary files /dev/null and b/evently/assets/images/svg/light_purple_single_line.png differ
diff --git a/evently/assets/images/svg/list.svg b/evently/assets/images/svg/list.svg
new file mode 100644
index 0000000000..32fa01075a
--- /dev/null
+++ b/evently/assets/images/svg/list.svg
@@ -0,0 +1,5 @@
+
diff --git a/evently/assets/images/svg/minus.svg b/evently/assets/images/svg/minus.svg
new file mode 100644
index 0000000000..588b49faa0
--- /dev/null
+++ b/evently/assets/images/svg/minus.svg
@@ -0,0 +1,4 @@
+
diff --git a/evently/assets/images/svg/more_options.svg b/evently/assets/images/svg/more_options.svg
new file mode 100644
index 0000000000..653364018c
--- /dev/null
+++ b/evently/assets/images/svg/more_options.svg
@@ -0,0 +1,5 @@
+
diff --git a/evently/assets/images/svg/publish.svg b/evently/assets/images/svg/publish.svg
new file mode 100644
index 0000000000..4dca606d37
--- /dev/null
+++ b/evently/assets/images/svg/publish.svg
@@ -0,0 +1,3 @@
+
diff --git a/evently/assets/images/svg/shirt.svg b/evently/assets/images/svg/shirt.svg
new file mode 100644
index 0000000000..b7d8d23fe3
--- /dev/null
+++ b/evently/assets/images/svg/shirt.svg
@@ -0,0 +1,3 @@
+
diff --git a/evently/assets/images/svg/splash.svg b/evently/assets/images/svg/splash.svg
new file mode 100644
index 0000000000..f0b2fe451a
--- /dev/null
+++ b/evently/assets/images/svg/splash.svg
@@ -0,0 +1,227 @@
+
diff --git a/evently/assets/images/svg/upload.svg b/evently/assets/images/svg/upload.svg
new file mode 100644
index 0000000000..a8383b830b
--- /dev/null
+++ b/evently/assets/images/svg/upload.svg
@@ -0,0 +1,3 @@
+
diff --git a/evently/assets/images/text_field_bottom_left.png b/evently/assets/images/text_field_bottom_left.png
new file mode 100644
index 0000000000..5151a60f91
Binary files /dev/null and b/evently/assets/images/text_field_bottom_left.png differ
diff --git a/evently/assets/images/text_field_button.png b/evently/assets/images/text_field_button.png
new file mode 100644
index 0000000000..3554ba3ac5
Binary files /dev/null and b/evently/assets/images/text_field_button.png differ
diff --git a/evently/assets/images/text_field_multi_line.png b/evently/assets/images/text_field_multi_line.png
new file mode 100644
index 0000000000..01e89c9bb0
Binary files /dev/null and b/evently/assets/images/text_field_multi_line.png differ
diff --git a/evently/assets/images/text_field_single_line.png b/evently/assets/images/text_field_single_line.png
new file mode 100644
index 0000000000..d9286e4db0
Binary files /dev/null and b/evently/assets/images/text_field_single_line.png differ
diff --git a/evently/assets/images/text_field_top_right.png b/evently/assets/images/text_field_top_right.png
new file mode 100644
index 0000000000..7af1b48c8a
Binary files /dev/null and b/evently/assets/images/text_field_top_right.png differ
diff --git a/evently/devtools_options.yaml b/evently/devtools_options.yaml
new file mode 100644
index 0000000000..7e7e7f67de
--- /dev/null
+++ b/evently/devtools_options.yaml
@@ -0,0 +1 @@
+extensions:
diff --git a/evently/i18n/de.json b/evently/i18n/de.json
new file mode 100644
index 0000000000..ecf3116545
--- /dev/null
+++ b/evently/i18n/de.json
@@ -0,0 +1,78 @@
+{
+ "eventhub": "Event Hub",
+ "welcome_event": "Welcome to Evently, where you can create custom events and issue NFT tickets with perks attendees can use during the event!",
+ "draft": "Draft",
+ "for_sale" : "For Sale",
+ "history": "History",
+ "no_nft_created": "There is no NFTs created.",
+ "create_event": "Create an event!",
+ "overview": "Overview",
+ "detail": "Detail",
+ "perks": "Perks",
+ "price": "Price",
+ "event_name" : "Event Name",
+ "what_your_event_called": "What is your event called?",
+ "host_name": "Host Name",
+ "who_hosting_it": "Who is hosting it?",
+ "thumbnail" : "Thumbnail",
+ "tap_select": "Tap to select ",
+ "mb_limit": "200MB Limit",
+ "continue_key": "Continue",
+ "save_draft": "Save as draft",
+ "start_date": "Start date",
+ "end_date" : "End date",
+ "start_time": "Start time",
+ "end_time": "End time",
+ "location": "Location",
+ "search_location": "Search location",
+ "description": "Description",
+ "what_event_for": "What is the event for? What should guests expect? Is there a dress code? Can they bring a guest?\n\n",
+ "add_perk": "Add perk",
+ "perk_icon": "Perk icon",
+ "description_optional": "Description (optional)",
+ "claim_free_drink": "Claim your free drink at the bar during the event!",
+ "character_limit": "256 character limit",
+ "there_no_perks_created": "There are no perks created.",
+ "free_shirt": "1 free t-shirt",
+ "is_free_drop": "Is this a free drop?",
+ "yes": "Yes",
+ "no" : "No",
+ "number_tickets": "Number of Tickets",
+ "network_fee_listed_price_occur_on_chain": "A network fee of 10% the listed price is required for all transactions that occur on-chain",
+ "maximum_1000": "1,000 maximum",
+ "publish": "Publish",
+ "enjoy_the_event": "Enjoy the event!",
+ "picking_file_error": "Fehler beim Auswählen der Datei",
+ "enter_event_name": "Enter event name",
+ "event_name_remaining_characters": "Event name should have {} characters or more",
+ "enter_host_name": "Enter host name",
+ "host_name_remaining_characters": "Host name should have {} characters or more",
+ "please_select_thumbnail" : "please select thumbnail",
+ "download_pylons_description": "Please download the Pylons app and create a username to publish a Event with Evently.",
+ "download_pylons_app": "Download Pylons app",
+ "create_username_description": "Please Open Pylons app and create a username to publish a Event with Evently.",
+ "open_pylons_app": "Öffnen Sie die Pylons-App",
+ "create_stripe_description": "Bitte registrieren Sie sich bei Stripe in der Pylons-App, um Ihre NFT für USD aufzulisten.",
+ "start": "Anfang",
+ "free_shirt": "1 free t-shirt",
+ "free_gift": "Free Gift",
+ "free_drink": "1 free drink",
+ "publish" : "Publish",
+ "recipe_created": "Recipe созданный",
+ "update_failed": "Upload Fehlgeschlagen",
+ "uploading": "Hochladen ...",
+ "uploading": "Hochladen ...",
+ "something_wrong_while_uploading": "Beim Hochladen ist etwas schief gelaufen. Bitte versuche es erneut.",
+ "cookbook_not_found": "Cookbook nicht gefunden",
+ "loading": "Wird geladen ...",
+ "something_wrong": "Etwas ist schief gelaufen. Bitte versuchen Sie, die Anwendung neu zu starten.",
+ "get_error": "Entwurf konnte nicht abgerufen werden",
+ "delete_error": "Entwurf konnte nicht gelöscht werden",
+ "save_error": "Entwurf konnte nicht gespeichert werden",
+ "save_error": "Failed to save draft",
+ "event_name" : "Event Name",
+ "are_you_sure_you_want_to_delete": "Möchten Sie diesen Entwurf wirklich löschen?",
+ "published": "Veröffentlicht",
+ "delete": "Löschen",
+ "event_preview" : "event_preview"
+}
\ No newline at end of file
diff --git a/evently/i18n/en-US.json b/evently/i18n/en-US.json
new file mode 100644
index 0000000000..0c91f363d6
--- /dev/null
+++ b/evently/i18n/en-US.json
@@ -0,0 +1,75 @@
+{
+ "eventhub": "Event Hub",
+ "welcome_event": "Welcome to Evently, where you can create custom events and issue NFT tickets with perks attendees can use during the event!",
+ "draft": "Draft",
+ "for_sale" : "For Sale",
+ "history": "History",
+ "no_nft_created": "There is no NFTs created.",
+ "create_event": "Create an event!",
+ "overview": "Overview",
+ "detail": "Detail",
+ "perks": "Perks",
+ "price": "Price",
+ "event_name" : "Event Name",
+ "what_your_event_called": "What is your event called?",
+ "host_name": "Host Name",
+ "who_hosting_it": "Who is hosting it?",
+ "thumbnail" : "Thumbnail",
+ "tap_select": "Tap to select ",
+ "mb_limit": "200MB Limit",
+ "continue_key": "Continue",
+ "save_draft": "Save as draft",
+ "start_date": "Start date",
+ "end_date" : "End date",
+ "start_time": "Start time",
+ "end_time": "End time",
+ "location": "Location",
+ "search_location": "Search location",
+ "description": "Description",
+ "what_event_for": "What is the event for? What should guests expect? Is there a dress code? Can they bring a guest?\n\n",
+ "add_perk": "Add perk",
+ "perk_icon": "Perk icon",
+ "description_optional": "Description (optional)",
+ "claim_free_drink": "Claim your free drink at the bar during the event!",
+ "character_limit": "256 character limit",
+ "there_no_perks_created": "There are no perks created.",
+ "free_shirt": "1 free t-shirt",
+ "is_free_drop": "Is this a free drop?",
+ "yes": "Yes",
+ "no" : "No",
+ "number_tickets": "Number of Tickets",
+ "network_fee_listed_price_occur_on_chain": "A network fee of 10% the listed price is required for all transactions that occur on-chain",
+ "maximum_1000": "1,000 maximum",
+ "publish": "Publish",
+ "enjoy_the_event": "Enjoy the event!",
+ "picking_file_error": "Fehler beim Auswählen der Datei",
+ "enter_event_name": "Enter event name",
+ "event_name_remaining_characters": "Event name should have {} characters or more",
+ "enter_host_name": "Enter host name",
+ "host_name_remaining_characters": "Host name should have {} characters or more",
+ "please_select_thumbnail" : "please select thumbnail",
+ "download_pylons_description": "Please download the Pylons app and create a username to publish a Event with Evently.",
+ "download_pylons_app": "Download Pylons app",
+ "create_username_description": "Please Open Pylons app and create a username to publish a Event with Evently.",
+ "open_pylons_app": "Open Pylons app",
+ "create_stripe_description": "Please register with Stripe in the Pylons app to list your NFT for USD.",
+ "start": "Start",
+ "free_shirt": "1 free t-shirt",
+ "free_gift": "Free Gift",
+ "free_drink": "1 free drink",
+ "publish" : "Publish",
+ "recipe_created": "Recipe created",
+ "update_failed": "Upload Failed",
+ "uploading": "Uploading ...",
+ "something_wrong_while_uploading": "Something went wrong while uploading. Please try again.",
+ "cookbook_not_found": "Cookbook not found",
+ "loading": "loading ...",
+ "something_wrong": "Something went wrong. Please try restarting the application.",
+ "get_error": "Failed to get draft",
+ "delete_error": "Failed to delete draft",
+ "event_name" : "Event Name",
+ "are_you_sure_you_want_to_delete": "Are you sure you want to delete this draft?",
+ "published": "Published",
+ "delete": "Delete",
+ "event_preview" : "event_preview"
+}
\ No newline at end of file
diff --git a/evently/i18n/es.json b/evently/i18n/es.json
new file mode 100644
index 0000000000..0ccaa01230
--- /dev/null
+++ b/evently/i18n/es.json
@@ -0,0 +1,76 @@
+{
+ "eventhub": "Event Hub",
+ "welcome_event": "Welcome to Evently, where you can create custom events and issue NFT tickets with perks attendees can use during the event!",
+ "draft": "Draft",
+ "for_sale" : "For Sale",
+ "history": "History",
+ "no_nft_created": "There is no NFTs created.",
+ "create_event": "Create an event!",
+ "overview": "Overview",
+ "detail": "Detail",
+ "perks": "Perks",
+ "price": "Price",
+ "event_name" : "Event Name",
+ "what_your_event_called": "What is your event called?",
+ "host_name": "Host Name",
+ "who_hosting_it": "Who is hosting it?",
+ "thumbnail" : "Thumbnail",
+ "tap_select": "Tap to select ",
+ "mb_limit": "200MB Limit",
+ "continue_key": "Continue",
+ "save_draft": "Save as draft",
+ "start_date": "Start date",
+ "end_date" : "End date",
+ "start_time": "Start time",
+ "end_time": "End time",
+ "location": "Location",
+ "search_location": "Search location",
+ "description": "Description",
+ "what_event_for": "What is the event for? What should guests expect? Is there a dress code? Can they bring a guest?\n\n",
+ "add_perk": "Add perk",
+ "perk_icon": "Perk icon",
+ "description_optional": "Description (optional)",
+ "claim_free_drink": "Claim your free drink at the bar during the event!",
+ "character_limit": "256 character limit",
+ "there_no_perks_created": "There are no perks created.",
+ "free_shirt": "1 free t-shirt",
+ "is_free_drop": "Is this a free drop?",
+ "yes": "Yes",
+ "no" : "No",
+ "number_tickets": "Number of Tickets",
+ "network_fee_listed_price_occur_on_chain": "A network fee of 10% the listed price is required for all transactions that occur on-chain",
+ "maximum_1000": "1,000 maximum",
+ "publish": "Publish",
+ "enjoy_the_event": "Enjoy the event!",
+ "picking_file_error": "Fehler beim Auswählen der Datei",
+ "enter_event_name": "Enter event name",
+ "event_name_remaining_characters": "Event name should have {} characters or more",
+ "enter_host_name": "Enter host name",
+ "host_name_remaining_characters": "Host name should have {} characters or more",
+ "please_select_thumbnail" : "please select thumbnail",
+ "download_pylons_description": "Please download the Pylons app and create a username to publish a Event with Evently.",
+ "download_pylons_app": "Download Pylons app",
+ "create_username_description": "Please Open Pylons app and create a username to publish a Event with Evently.",
+ "open_pylons_app": "Abrir la aplicación Pylons",
+ "create_stripe_description": "Regístrese con Stripe en la aplicación Pylons para enumerar su NFT para USD.",
+ "start": "Comienzo",
+ "free_shirt": "1 free t-shirt",
+ "free_gift": "Free Gift",
+ "free_drink": "1 free drink",
+ "publish" : "Publish",
+ "recipe_created": "Recipe creada",
+ "update_failed": "Subida ha fallado",
+ "uploading": "Subiendo...",
+ "something_wrong_while_uploading": "Algo salió mal durante la carga. Inténtalo de nuevo.",
+ "cookbook_not_found": "Cookbook extraviado",
+ "loading": "cargando ...",
+ "something_wrong": "Algo salió mal. Intenta reiniciar la aplicación.",
+ "get_error": "No se pudo obtener el Plan Preliminar",
+ "delete_error": "No se pudo eliminar el Plan Preliminar",
+ "save_error": "No se pudo guardar el Plan Preliminar",
+ "event_name" : "Event Name",
+ "are_you_sure_you_want_to_delete": "¿Seguro que quieres eliminar este Plan Preliminar?",
+ "published": "Publicado",
+ "delete": "Borrar",
+ "event_preview" : "event_preview"
+}
\ No newline at end of file
diff --git a/evently/i18n/ru-RU.json b/evently/i18n/ru-RU.json
new file mode 100644
index 0000000000..0a9945448a
--- /dev/null
+++ b/evently/i18n/ru-RU.json
@@ -0,0 +1,76 @@
+{
+ "eventhub": "Event Hub",
+ "welcome_event": "Welcome to Evently, where you can create custom events and issue NFT tickets with perks attendees can use during the event!",
+ "draft": "Draft",
+ "for_sale" : "For Sale",
+ "history": "History",
+ "no_nft_created": "There is no NFTs created.",
+ "create_event": "Create an event!",
+ "overview": "Overview",
+ "detail": "Detail",
+ "perks": "Perks",
+ "price": "Price",
+ "event_name" : "Event Name",
+ "what_your_event_called": "What is your event called?",
+ "host_name": "Host Name",
+ "who_hosting_it": "Who is hosting it?",
+ "thumbnail" : "Thumbnail",
+ "tap_select": "Tap to select ",
+ "mb_limit": "200MB Limit",
+ "continue_key": "Continue",
+ "save_draft": "Save as draft",
+ "start_date": "Start date",
+ "end_date" : "End date",
+ "start_time": "Start time",
+ "end_time": "End time",
+ "location": "Location",
+ "search_location": "Search location",
+ "description": "Description",
+ "what_event_for": "What is the event for? What should guests expect? Is there a dress code? Can they bring a guest?\n\n",
+ "add_perk": "Add perk",
+ "perk_icon": "Perk icon",
+ "description_optional": "Description (optional)",
+ "claim_free_drink": "Claim your free drink at the bar during the event!",
+ "character_limit": "256 character limit",
+ "there_no_perks_created": "There are no perks created.",
+ "free_shirt": "1 free t-shirt",
+ "is_free_drop": "Is this a free drop?",
+ "yes": "Yes",
+ "no" : "No",
+ "number_tickets": "Number of Tickets",
+ "network_fee_listed_price_occur_on_chain": "A network fee of 10% the listed price is required for all transactions that occur on-chain",
+ "maximum_1000": "1,000 maximum",
+ "publish": "Publish",
+ "enjoy_the_event": "Enjoy the event!",
+ "picking_file_error": "Fehler beim Auswählen der Datei",
+ "enter_event_name": "Enter event name",
+ "event_name_remaining_characters": "Event name should have {} characters or more",
+ "enter_host_name": "Enter host name",
+ "host_name_remaining_characters": "Host name should have {} characters or more",
+ "please_select_thumbnail" : "please select thumbnail",
+ "download_pylons_description": "Please download the Pylons app and create a username to publish a Event with Evently.",
+ "download_pylons_app": "Download Pylons app",
+ "create_username_description": "Please Open Pylons app and create a username to publish a Event with Evently.",
+ "open_pylons_app": "Откройте приложение пилонов",
+ "create_stripe_description": "Пожалуйста, зарегистрируйтесь в Stripe в приложении Pylons, чтобы перечислить свои NFT в долларах США.",
+ "start": "Начинать",
+ "free_shirt": "1 free t-shirt",
+ "free_gift": "Free Gift",
+ "free_drink": "1 free drink",
+ "publish" : "Publish",
+ "recipe_created": "Recipe созданный",
+ "update_failed": "Загрузка не удалась",
+ "uploading": "Загрузка...",
+ "something_wrong_while_uploading": "Что-то пошло не так во время загрузки. Пожалуйста, попробуйте еще раз.",
+ "cookbook_not_found": "Cookbook не найден",
+ "loading": "cargando ...",
+ "something_wrong": "Что-то пошло не так. Попробуйте перезапустить приложение.",
+ "get_error": "Не удалось получить черновик",
+ "delete_error": "Не удалось удалить черновик",
+ "save_error": "Не удалось сохранить черновик",
+ "event_name" : "Event Name",
+ "are_you_sure_you_want_to_delete": "Вы уверены, что хотите удалить этот черновик?",
+ "published": "изданный",
+ "delete": "удалять",
+ "event_preview" : "event_preview"
+}
\ No newline at end of file
diff --git a/evently/ios/.gitignore b/evently/ios/.gitignore
new file mode 100644
index 0000000000..7a7f9873ad
--- /dev/null
+++ b/evently/ios/.gitignore
@@ -0,0 +1,34 @@
+**/dgph
+*.mode1v3
+*.mode2v3
+*.moved-aside
+*.pbxuser
+*.perspectivev3
+**/*sync/
+.sconsign.dblite
+.tags*
+**/.vagrant/
+**/DerivedData/
+Icon?
+**/Pods/
+**/.symlinks/
+profile
+xcuserdata
+**/.generated/
+Flutter/App.framework
+Flutter/Flutter.framework
+Flutter/Flutter.podspec
+Flutter/Generated.xcconfig
+Flutter/ephemeral/
+Flutter/app.flx
+Flutter/app.zip
+Flutter/flutter_assets/
+Flutter/flutter_export_environment.sh
+ServiceDefinitions.json
+Runner/GeneratedPluginRegistrant.*
+
+# Exceptions to above rules.
+!default.mode1v3
+!default.mode2v3
+!default.pbxuser
+!default.perspectivev3
diff --git a/evently/ios/Flutter/AppFrameworkInfo.plist b/evently/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 0000000000..7c56964006
--- /dev/null
+++ b/evently/ios/Flutter/AppFrameworkInfo.plist
@@ -0,0 +1,26 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ App
+ CFBundleIdentifier
+ io.flutter.flutter.app
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ App
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1.0
+ MinimumOSVersion
+ 12.0
+
+
diff --git a/evently/ios/Flutter/Debug.xcconfig b/evently/ios/Flutter/Debug.xcconfig
new file mode 100644
index 0000000000..ec97fc6f30
--- /dev/null
+++ b/evently/ios/Flutter/Debug.xcconfig
@@ -0,0 +1,2 @@
+#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
+#include "Generated.xcconfig"
diff --git a/evently/ios/Flutter/Release.xcconfig b/evently/ios/Flutter/Release.xcconfig
new file mode 100644
index 0000000000..c4855bfe20
--- /dev/null
+++ b/evently/ios/Flutter/Release.xcconfig
@@ -0,0 +1,2 @@
+#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
+#include "Generated.xcconfig"
diff --git a/evently/ios/Podfile b/evently/ios/Podfile
new file mode 100644
index 0000000000..d97f17e223
--- /dev/null
+++ b/evently/ios/Podfile
@@ -0,0 +1,44 @@
+# Uncomment this line to define a global platform for your project
+# platform :ios, '12.0'
+
+# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
+ENV['COCOAPODS_DISABLE_STATS'] = 'true'
+
+project 'Runner', {
+ 'Debug' => :debug,
+ 'Profile' => :release,
+ 'Release' => :release,
+}
+
+def flutter_root
+ generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
+ unless File.exist?(generated_xcode_build_settings_path)
+ raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
+ end
+
+ File.foreach(generated_xcode_build_settings_path) do |line|
+ matches = line.match(/FLUTTER_ROOT\=(.*)/)
+ return matches[1].strip if matches
+ end
+ raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
+end
+
+require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
+
+flutter_ios_podfile_setup
+
+target 'Runner' do
+ use_frameworks!
+ use_modular_headers!
+
+ flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
+ target 'RunnerTests' do
+ inherit! :search_paths
+ end
+end
+
+post_install do |installer|
+ installer.pods_project.targets.each do |target|
+ flutter_additional_ios_build_settings(target)
+ end
+end
diff --git a/evently/ios/Runner.xcodeproj/project.pbxproj b/evently/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 0000000000..39d6832f04
--- /dev/null
+++ b/evently/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,619 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 97C146E61CF9000F007C117D /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 97C146ED1CF9000F007C117D;
+ remoteInfo = Runner;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ );
+ name = "Embed Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
+ 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
+ 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
+ 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
+ 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 331C8082294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXGroup;
+ children = (
+ 331C807B294A618700263BE5 /* RunnerTests.swift */,
+ );
+ path = RunnerTests;
+ sourceTree = "";
+ };
+ 9740EEB11CF90186004384FC /* Flutter */ = {
+ isa = PBXGroup;
+ children = (
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */,
+ );
+ name = Flutter;
+ sourceTree = "";
+ };
+ 97C146E51CF9000F007C117D = {
+ isa = PBXGroup;
+ children = (
+ 9740EEB11CF90186004384FC /* Flutter */,
+ 97C146F01CF9000F007C117D /* Runner */,
+ 97C146EF1CF9000F007C117D /* Products */,
+ 331C8082294A63A400263BE5 /* RunnerTests */,
+ );
+ sourceTree = "";
+ };
+ 97C146EF1CF9000F007C117D /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146EE1CF9000F007C117D /* Runner.app */,
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 97C146F01CF9000F007C117D /* Runner */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146FA1CF9000F007C117D /* Main.storyboard */,
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */,
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
+ 97C147021CF9000F007C117D /* Info.plist */,
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
+ );
+ path = Runner;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 331C8080294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
+ buildPhases = (
+ 331C807D294A63A400263BE5 /* Sources */,
+ 331C807F294A63A400263BE5 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */,
+ );
+ name = RunnerTests;
+ productName = RunnerTests;
+ productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
+ productType = "com.apple.product-type.bundle.unit-test";
+ };
+ 97C146ED1CF9000F007C117D /* Runner */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
+ buildPhases = (
+ 9740EEB61CF901F6004384FC /* Run Script */,
+ 97C146EA1CF9000F007C117D /* Sources */,
+ 97C146EB1CF9000F007C117D /* Frameworks */,
+ 97C146EC1CF9000F007C117D /* Resources */,
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = Runner;
+ productName = Runner;
+ productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 97C146E61CF9000F007C117D /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ BuildIndependentTargetsInParallel = YES;
+ LastUpgradeCheck = 1510;
+ ORGANIZATIONNAME = "";
+ TargetAttributes = {
+ 331C8080294A63A400263BE5 = {
+ CreatedOnToolsVersion = 14.0;
+ TestTargetID = 97C146ED1CF9000F007C117D;
+ };
+ 97C146ED1CF9000F007C117D = {
+ CreatedOnToolsVersion = 7.3.1;
+ LastSwiftMigration = 1100;
+ };
+ };
+ };
+ buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
+ compatibilityVersion = "Xcode 9.3";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 97C146E51CF9000F007C117D;
+ productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 97C146ED1CF9000F007C117D /* Runner */,
+ 331C8080294A63A400263BE5 /* RunnerTests */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 331C807F294A63A400263BE5 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 97C146EC1CF9000F007C117D /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ );
+ name = "Thin Binary";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ };
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ );
+ name = "Run Script";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 331C807D294A63A400263BE5 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 97C146EA1CF9000F007C117D /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 97C146ED1CF9000F007C117D /* Runner */;
+ targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency section */
+
+/* Begin PBXVariantGroup section */
+ 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C146FB1CF9000F007C117D /* Base */,
+ );
+ name = Main.storyboard;
+ sourceTree = "";
+ };
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C147001CF9000F007C117D /* Base */,
+ );
+ name = LaunchScreen.storyboard;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 249021D3217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Profile;
+ };
+ 249021D4217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ DEVELOPMENT_TEAM = PKBW8U3YH7;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.evently;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Profile;
+ };
+ 331C8088294A63A400263BE5 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.evently.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Debug;
+ };
+ 331C8089294A63A400263BE5 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.evently.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Release;
+ };
+ 331C808A294A63A400263BE5 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.evently.RunnerTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_VERSION = 5.0;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = Profile;
+ };
+ 97C147031CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ 97C147041CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ 97C147061CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ DEVELOPMENT_TEAM = PKBW8U3YH7;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.evently;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 97C147071CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ DEVELOPMENT_TEAM = PKBW8U3YH7;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.evently;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 331C8088294A63A400263BE5 /* Debug */,
+ 331C8089294A63A400263BE5 /* Release */,
+ 331C808A294A63A400263BE5 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147031CF9000F007C117D /* Debug */,
+ 97C147041CF9000F007C117D /* Release */,
+ 249021D3217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147061CF9000F007C117D /* Debug */,
+ 97C147071CF9000F007C117D /* Release */,
+ 249021D4217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 97C146E61CF9000F007C117D /* Project object */;
+}
diff --git a/evently/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/evently/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000000..919434a625
--- /dev/null
+++ b/evently/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/evently/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/evently/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000000..18d981003d
--- /dev/null
+++ b/evently/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/evently/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/evently/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000000..f9b0d7c5ea
--- /dev/null
+++ b/evently/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/evently/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/evently/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 0000000000..8e3ca5dfe1
--- /dev/null
+++ b/evently/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/evently/ios/Runner.xcworkspace/contents.xcworkspacedata b/evently/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000000..1d526a16ed
--- /dev/null
+++ b/evently/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/evently/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/evently/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000000..18d981003d
--- /dev/null
+++ b/evently/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/evently/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/evently/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000000..f9b0d7c5ea
--- /dev/null
+++ b/evently/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/evently/ios/Runner/AppDelegate.swift b/evently/ios/Runner/AppDelegate.swift
new file mode 100644
index 0000000000..70693e4a8c
--- /dev/null
+++ b/evently/ios/Runner/AppDelegate.swift
@@ -0,0 +1,13 @@
+import UIKit
+import Flutter
+
+@UIApplicationMain
+@objc class AppDelegate: FlutterAppDelegate {
+ override func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
+ ) -> Bool {
+ GeneratedPluginRegistrant.register(with: self)
+ return super.application(application, didFinishLaunchingWithOptions: launchOptions)
+ }
+}
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000000..d36b1fab2d
--- /dev/null
+++ b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,122 @@
+{
+ "images" : [
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "83.5x83.5",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-83.5x83.5@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "1024x1024",
+ "idiom" : "ios-marketing",
+ "filename" : "Icon-App-1024x1024@1x.png",
+ "scale" : "1x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 0000000000..dc9ada4725
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 0000000000..7353c41ecf
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 0000000000..797d452e45
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 0000000000..6ed2d933e1
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 0000000000..4cd7b0099c
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 0000000000..fe730945a0
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 0000000000..321773cd85
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 0000000000..797d452e45
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 0000000000..502f463a9b
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 0000000000..0ec3034392
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 0000000000..0ec3034392
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 0000000000..e9f5fea27c
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 0000000000..84ac32ae7d
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 0000000000..8953cba090
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file mode 100644
index 0000000000..0467bf12aa
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 0000000000..0bedcf2fd4
--- /dev/null
+++ b/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
@@ -0,0 +1,23 @@
+{
+ "images" : [
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage.png",
+ "scale" : "1x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@3x.png",
+ "scale" : "3x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 0000000000..9da19eacad
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 0000000000..9da19eacad
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 0000000000..9da19eacad
Binary files /dev/null and b/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 0000000000..89c2725b70
--- /dev/null
+++ b/evently/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
@@ -0,0 +1,5 @@
+# Launch Screen Assets
+
+You can customize the launch screen with your own desired assets by replacing the image files in this directory.
+
+You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
\ No newline at end of file
diff --git a/evently/ios/Runner/Base.lproj/LaunchScreen.storyboard b/evently/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 0000000000..f2e259c7c9
--- /dev/null
+++ b/evently/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/evently/ios/Runner/Base.lproj/Main.storyboard b/evently/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 0000000000..f3c28516fb
--- /dev/null
+++ b/evently/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/evently/ios/Runner/Info.plist b/evently/ios/Runner/Info.plist
new file mode 100644
index 0000000000..b3d7d090d9
--- /dev/null
+++ b/evently/ios/Runner/Info.plist
@@ -0,0 +1,68 @@
+
+
+
+
+
+ CFBundleURLTypes
+
+
+ CFBundleTypeRole
+ Editor
+ CFBundleURLName
+ tech.pylons.evently
+ CFBundleURLSchemes
+
+ pylons-evently
+
+
+
+ LSApplicationQueriesSchemes
+
+ pylons-wallet
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleDisplayName
+ Evently
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ evently
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ $(FLUTTER_BUILD_NAME)
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ $(FLUTTER_BUILD_NUMBER)
+ LSRequiresIPhoneOS
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIMainStoryboardFile
+ Main
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ CADisableMinimumFrameDurationOnPhone
+
+ UIApplicationSupportsIndirectInputEvents
+
+
+
diff --git a/evently/ios/Runner/Runner-Bridging-Header.h b/evently/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 0000000000..308a2a560b
--- /dev/null
+++ b/evently/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/evently/ios/RunnerTests/RunnerTests.swift b/evently/ios/RunnerTests/RunnerTests.swift
new file mode 100644
index 0000000000..86a7c3b1b6
--- /dev/null
+++ b/evently/ios/RunnerTests/RunnerTests.swift
@@ -0,0 +1,12 @@
+import Flutter
+import UIKit
+import XCTest
+
+class RunnerTests: XCTestCase {
+
+ func testExample() {
+ // If you add code to the Runner application, consider adding tests here.
+ // See https://developer.apple.com/documentation/xctest for more information about using XCTest.
+ }
+
+}
diff --git a/evently/lib/evently_provider.dart b/evently/lib/evently_provider.dart
new file mode 100644
index 0000000000..2cf50625e3
--- /dev/null
+++ b/evently/lib/evently_provider.dart
@@ -0,0 +1,439 @@
+import 'dart:async';
+import 'dart:convert';
+
+import 'package:dartz/dartz.dart';
+import 'package:easy_localization/easy_localization.dart';
+import 'package:evently/generated/locale_keys.g.dart';
+import 'package:evently/main.dart';
+import 'package:evently/models/denom.dart';
+import 'package:evently/models/events.dart';
+import 'package:evently/models/picked_file_model.dart';
+import 'package:evently/models/storage_response_model.dart';
+import 'package:evently/repository/repository.dart';
+import 'package:evently/screens/event_hub/event_hub_view_model.dart';
+import 'package:evently/utils/constants.dart';
+import 'package:evently/utils/di/di.dart';
+import 'package:evently/utils/enums.dart';
+import 'package:evently/utils/extension_util.dart';
+import 'package:evently/utils/failure/failure.dart';
+import 'package:evently/widgets/loading_with_progress.dart';
+import 'package:flutter/cupertino.dart';
+import 'package:flutter/material.dart';
+import 'package:flutter/widgets.dart';
+import 'package:injectable/injectable.dart';
+import 'package:pylons_sdk/low_level.dart';
+
+import 'services/third_party_services/quick_node.dart';
+
+@LazySingleton()
+class EventlyProvider extends ChangeNotifier {
+ EventlyProvider({
+ required this.repository,
+ });
+
+ final Repository repository;
+
+ ///* overview screen variable
+ String _eventName = '';
+ String _hostName = '';
+ String _thumbnail = '';
+ bool _isOverviewEnable = false;
+
+ String? get thumbnail => _thumbnail;
+ String get eventName => _eventName;
+ String get hostName => _hostName;
+ bool get isOverviewEnable => _isOverviewEnable;
+
+ set setEventName(String value) {
+ _eventName = value;
+ checkIsOverEnable();
+ notifyListeners();
+ }
+
+ set setHostName(String value) {
+ _hostName = value;
+ checkIsOverEnable();
+ notifyListeners();
+ }
+
+ set setThumbnail(String? file) {
+ _thumbnail = file!;
+ checkIsOverEnable();
+ notifyListeners();
+ }
+
+ set setOverviewEnable(bool value) {
+ _isOverviewEnable = value;
+ notifyListeners();
+ }
+
+ checkIsOverEnable() {
+ setOverviewEnable =
+ thumbnail!.isNotEmpty && eventName.length > 4 && hostName.isNotEmpty;
+ }
+
+ ///* detail screen
+ String _startDate = "";
+ String _endDate = "";
+ String _startTime = "";
+ String _endTime = "";
+ String _location = "";
+ String _description = "";
+
+ String get startDate => _startDate;
+ String get endDate => _endDate;
+ String get startTime => _startTime;
+ String get endTime => _endTime;
+ String get location => _location;
+ String get description => _description;
+
+ int? _id;
+ set setId(int id) {
+ _id = id;
+ }
+
+ get id => _id;
+
+ set setStartDate(String value) {
+ _startDate = value;
+ notifyListeners();
+ }
+
+ set setEndDate(String value) {
+ _endDate = value;
+ notifyListeners();
+ }
+
+ set setStartTime(String value) {
+ _startTime = value;
+ notifyListeners();
+ }
+
+ set setEndTime(String value) {
+ _endTime = value;
+ notifyListeners();
+ }
+
+ set setLocation(String value) {
+ _location = value;
+ notifyListeners();
+ }
+
+ set setDescription(String value) {
+ _description = value;
+ notifyListeners();
+ }
+
+ /// perks screen
+ List _perks = [];
+ int _selectedPerk = 0;
+
+ List get perks => _perks;
+
+ int get selectedPerk => _selectedPerk;
+
+ set setSelectedPerks(int val) {
+ _selectedPerk = val;
+ notifyListeners();
+ }
+
+ set setPerks(PerksModel perksModel) {
+ _perks.add(perksModel);
+ setSelectedPerks = _perks.length - 1;
+ notifyListeners();
+ }
+
+ updatePerks(PerksModel perksModel, int index) {
+ _perks[index] = perksModel;
+ notifyListeners();
+ }
+
+ removePerks(int index) {
+ _perks.removeAt(index);
+ setSelectedPerks = _perks.length - 1;
+ notifyListeners();
+ }
+
+ ///* price screen
+
+ Denom _selectedDenom = Denom.availableDenoms.first;
+
+ Denom get selectedDenom => _selectedDenom;
+
+ List supportedDenomList = Denom.availableDenoms;
+
+ FreeDrop _isFreeDrop = FreeDrop.unselected;
+
+ int _numberOfTickets = 0;
+ int _price = 0;
+
+ set setNumberOfTickets(int numberOfTickets) {
+ _numberOfTickets = numberOfTickets;
+ notifyListeners();
+ }
+
+ int get numberOfTickets => _numberOfTickets;
+
+ FreeDrop get isFreeDrop => _isFreeDrop;
+
+ set setFreeDrop(FreeDrop freeDrop) {
+ _isFreeDrop = freeDrop;
+ notifyListeners();
+ }
+
+ set setPrice(int price) {
+ _price = price;
+ notifyListeners();
+ }
+
+ int get price => _price;
+
+ void setSelectedDenom(Denom value) {
+ _selectedDenom = value;
+ notifyListeners();
+ }
+
+ final StreamController _uploadProgressController =
+ StreamController.broadcast();
+
+ Stream get uploadProgressStream =>
+ _uploadProgressController.stream;
+
+ void pickThumbnail() async {
+ final pickedFile = await repository.pickFile();
+
+ final result = pickedFile.getOrElse(
+ () => PickedFileModel(
+ path: "",
+ fileName: "",
+ extension: "",
+ ),
+ );
+
+ if (result.path.isEmpty) return;
+
+ final loading = LoadingProgress()
+ ..showLoadingWithProgress(message: LocaleKeys.uploading.tr());
+
+ Either response;
+ response = await repository.uploadFileUsingQuickNode(
+ uploadIPFSInput: UploadIPFSInput(
+ fileName: result.fileName,
+ filePath: result.path,
+ contentType: QuickNode.getContentType(result.extension)),
+ onUploadProgressCallback: (value) {
+ _uploadProgressController.sink.add(value);
+ },
+ );
+
+ if (response.isLeft()) {
+ loading.dismiss();
+ LocaleKeys.something_wrong_while_uploading.tr().show();
+ return;
+ }
+
+ final fileUploadResponse =
+ response.getOrElse(() => StorageResponseModel.initial());
+ loading.dismiss();
+
+ setThumbnail = "$ipfsDomain/${fileUploadResponse.value?.cid}";
+ }
+
+ bool stripeAccountExists = false;
+
+ String? _cookbookId;
+ String? get cookbookId => _cookbookId;
+
+ bool showStripeDialog() =>
+ !stripeAccountExists &&
+ _selectedDenom.symbol == kUsdSymbol &&
+ isFreeDrop == FreeDrop.no;
+
+ ///* this method is used to get the profile
+ Future> getProfile() async {
+ final sdkResponse = await PylonsWallet.instance.getProfile();
+
+ if (sdkResponse.success) {
+ stripeAccountExists = sdkResponse.data!.stripeExists;
+
+ supportedDenomList = Denom.availableDenoms
+ .where(
+ (Denom e) => sdkResponse.data!.supportedCoins.contains(e.symbol))
+ .toList();
+
+ if (supportedDenomList.isNotEmpty && selectedDenom.symbol.isEmpty) {
+ _selectedDenom = supportedDenomList.first;
+ }
+ }
+ return sdkResponse;
+ }
+
+ String _recipeId = "";
+ String get recipeId => _recipeId;
+
+ Future createRecipe() async {
+ final scaffoldMessengerState = navigatorKey.getState();
+
+ _cookbookId = repository.getCookbookId();
+
+ if (_cookbookId == null) {
+ final isCookBookCreated = await createCookbook();
+
+ if (isCookBookCreated) {
+ _cookbookId = repository.getCookbookId();
+ notifyListeners();
+ } else {
+ return false;
+ }
+ }
+
+ _recipeId = repository.autoGenerateEventlyId();
+
+ final event = Events(
+ id: id,
+ eventName: eventName,
+ hostName: hostName,
+ thumbnail: thumbnail!,
+ startDate: startDate,
+ endDate: endDate,
+ startTime: startTime,
+ endTime: endTime,
+ location: location,
+ description: description,
+ numberOfTickets: numberOfTickets.toString(),
+ price: price.toString(),
+ listOfPerks: perks.map((e) => jsonEncode(e)).toList().toString(),
+ cookbookID: _cookbookId!,
+ recipeID: _recipeId,
+ step: '',
+ );
+
+ final String prices = isFreeDrop == FreeDrop.yes
+ ? "0"
+ : _selectedDenom.formatAmount(price: price.toString());
+
+ final recipe = event.createRecipe(
+ cookbookId: _cookbookId!,
+ recipeId: _recipeId,
+ isFreeDrop: isFreeDrop,
+ symbol: selectedDenom.symbol,
+ price: prices,
+ );
+
+ final response = await PylonsWallet.instance
+ .txCreateRecipe(recipe, requestResponse: false);
+
+ if (!response.success) {
+ scaffoldMessengerState?.show(message: "$kErrRecipe ${response.error}");
+ return false;
+ }
+ scaffoldMessengerState?.show(message: LocaleKeys.recipe_created.tr());
+ await sl().updatePublishedEventList();
+ await deleteEvent(event.id);
+ return true;
+ }
+
+ Future deleteEvent(int? id) async {
+ if (id == null) return;
+ await repository.deleteEvent(id);
+ }
+
+ /// send createCookBook tx message to the wallet app
+ /// return true or false depending on the response from the wallet app
+ Future createCookbook() async {
+ _cookbookId = await repository.autoGenerateCookbookId();
+
+ final cookBook1 = Cookbook(
+ creator: "",
+ id: _cookbookId,
+ name: cookbookName,
+ description: cookbookDesc,
+ developer: hostName,
+ version: kVersionCookboox,
+ supportEmail: supportedEmail,
+ enabled: true,
+ );
+
+ final response = await PylonsWallet.instance.txCreateCookbook(cookBook1);
+ if (response.success) {
+ return true;
+ }
+
+ navigatorKey.showMsg(message: response.error);
+ return false;
+ }
+
+ void initStore() {
+ _eventName = "";
+ _hostName = "";
+ _thumbnail = "";
+ _isOverviewEnable = false;
+
+ _startDate = "";
+ _endDate = "";
+ _startTime = "";
+ _endTime = "";
+ _location = "";
+ _description = "";
+ _selectedDenom = Denom.availableDenoms.first;
+
+ _isFreeDrop = FreeDrop.unselected;
+ _numberOfTickets = 0;
+ _price = 0;
+ _cookbookId = '';
+
+ _perks = [];
+
+ notifyListeners();
+ }
+
+ saveAsDraft({
+ required VoidCallback onCompleted,
+ required UploadStep uploadStep,
+ }) async {
+ final saveEvent = Events(
+ id: id,
+ step: uploadStep.toString(),
+ eventName: eventName,
+ hostName: hostName,
+ thumbnail: thumbnail!,
+ startDate: startDate,
+ endDate: endDate,
+ startTime: startTime,
+ endTime: endTime,
+ location: location,
+ description: description,
+ listOfPerks: perks.map((e) => jsonEncode(e)).toList().toString(),
+ isFreeDrops: isFreeDrop.toString(),
+ denom: jsonEncode(selectedDenom),
+ numberOfTickets: numberOfTickets.toString(),
+ price: price.toString(),
+ );
+
+ /// this check is for when no event is save as draft
+ if (saveEvent.id == null) {
+ await repository.saveEvents(saveEvent);
+ onCompleted();
+ return;
+ }
+
+ switch (uploadStep) {
+ case UploadStep.overView:
+ await repository.updateEvent(saveEvent);
+ break;
+ case UploadStep.detail:
+ await repository.updateEvent(saveEvent);
+ break;
+ case UploadStep.perks:
+ await repository.updateEvent(saveEvent);
+ break;
+ case UploadStep.price:
+ await repository.updateEvent(saveEvent);
+ break;
+ case UploadStep.none:
+ break;
+ }
+
+ onCompleted();
+ }
+}
diff --git a/evently/lib/generated/locale_keys.g.dart b/evently/lib/generated/locale_keys.g.dart
new file mode 100644
index 0000000000..06eb4dd784
--- /dev/null
+++ b/evently/lib/generated/locale_keys.g.dart
@@ -0,0 +1,76 @@
+// DO NOT EDIT. This is code generated via package:easy_localization/generate.dart
+
+abstract class LocaleKeys {
+ static const eventhub = 'eventhub';
+ static const welcome_event = 'welcome_event';
+ static const draft = 'draft';
+ static const for_sale = 'for_sale';
+ static const history = 'history';
+ static const no_nft_created = 'no_nft_created';
+ static const create_event = 'create_event';
+ static const overview = 'overview';
+ static const detail = 'detail';
+ static const perks = 'perks';
+ static const price = 'price';
+ static const event_name = 'event_name';
+ static const what_your_event_called = 'what_your_event_called';
+ static const host_name = 'host_name';
+ static const who_hosting_it = 'who_hosting_it';
+ static const thumbnail = 'thumbnail';
+ static const tap_select = 'tap_select';
+ static const mb_limit = 'mb_limit';
+ static const continue_key = 'continue_key';
+ static const save_draft = 'save_draft';
+ static const start_date = 'start_date';
+ static const end_date = 'end_date';
+ static const start_time = 'start_time';
+ static const end_time = 'end_time';
+ static const location = 'location';
+ static const search_location = 'search_location';
+ static const description = 'description';
+ static const what_event_for = 'what_event_for';
+ static const add_perk = 'add_perk';
+ static const perk_icon = 'perk_icon';
+ static const description_optional = 'description_optional';
+ static const claim_free_drink = 'claim_free_drink';
+ static const character_limit = 'character_limit';
+ static const there_no_perks_created = 'there_no_perks_created';
+ static const free_shirt = 'free_shirt';
+ static const is_free_drop = 'is_free_drop';
+ static const yes = 'yes';
+ static const no = 'no';
+ static const number_tickets = 'number_tickets';
+ static const network_fee_listed_price_occur_on_chain = 'network_fee_listed_price_occur_on_chain';
+ static const maximum_1000 = 'maximum_1000';
+ static const publish = 'publish';
+ static const enjoy_the_event = 'enjoy_the_event';
+ static const picking_file_error = 'picking_file_error';
+ static const enter_event_name = 'enter_event_name';
+ static const event_name_remaining_characters = 'event_name_remaining_characters';
+ static const enter_host_name = 'enter_host_name';
+ static const host_name_remaining_characters = 'host_name_remaining_characters';
+ static const please_select_thumbnail = 'please_select_thumbnail';
+ static const download_pylons_description = 'download_pylons_description';
+ static const download_pylons_app = 'download_pylons_app';
+ static const create_username_description = 'create_username_description';
+ static const open_pylons_app = 'open_pylons_app';
+ static const create_stripe_description = 'create_stripe_description';
+ static const start = 'start';
+ static const free_gift = 'free_gift';
+ static const free_drink = 'free_drink';
+ static const recipe_created = 'recipe_created';
+ static const update_failed = 'update_failed';
+ static const uploading = 'uploading';
+ static const something_wrong_while_uploading = 'something_wrong_while_uploading';
+ static const cookbook_not_found = 'cookbook_not_found';
+ static const loading = 'loading';
+ static const something_wrong = 'something_wrong';
+ static const get_error = 'get_error';
+ static const delete_error = 'delete_error';
+ static const save_error = 'save_error';
+ static const are_you_sure_you_want_to_delete = 'are_you_sure_you_want_to_delete';
+ static const published = 'published';
+ static const delete = 'delete';
+ static const event_preview = 'event_preview';
+
+}
diff --git a/evently/lib/main.dart b/evently/lib/main.dart
new file mode 100644
index 0000000000..76cde65d6c
--- /dev/null
+++ b/evently/lib/main.dart
@@ -0,0 +1,97 @@
+import 'dart:ui';
+
+import 'package:easy_localization/easy_localization.dart';
+import 'package:evently/evently_provider.dart';
+import 'package:evently/screens/buyer_status_screen.dart';
+import 'package:evently/screens/create_event.dart';
+import 'package:evently/screens/event_hub/event_hub_screen.dart';
+import 'package:evently/screens/splash_screen.dart';
+import 'package:evently/services/third_party_services/database.dart';
+import 'package:evently/utils/constants.dart';
+import 'package:evently/utils/di/di.dart';
+import 'package:evently/utils/evently_app_theme.dart';
+import 'package:evently/utils/route_util.dart';
+import 'package:flutter/material.dart';
+import 'package:flutter_screenutil/flutter_screenutil.dart';
+import 'package:get_it/get_it.dart';
+import 'package:provider/provider.dart';
+import 'package:pylons_sdk/pylons_sdk.dart';
+
+bool isTablet = false;
+
+void main() async {
+ WidgetsFlutterBinding.ensureInitialized();
+
+ PylonsWallet.setup(mode: PylonsMode.prod, host: 'evently');
+
+ await EasyLocalization.ensureInitialized();
+
+ configureDependencies();
+ await GetIt.I.isReady();
+
+ isTablet = _getIsCurrentDeviceTablet();
+
+ runApp(
+ EasyLocalization(
+ supportedLocales: const [
+ Locale('en', 'US'),
+ Locale('ru', 'RU'),
+ Locale('es'),
+ Locale('de'),
+ ],
+ path: 'i18n',
+ fallbackLocale: const Locale('en', 'US'),
+ saveLocale: false,
+ child: const MyApp(),
+ ),
+ );
+}
+
+final navigatorKey = GlobalKey();
+
+class MyApp extends StatelessWidget {
+ const MyApp({super.key});
+
+ // This widget is the root of your application.
+ @override
+ Widget build(BuildContext context) {
+ return MultiProvider(
+ providers: [
+ ChangeNotifierProvider(create: (_) => sl()),
+ ],
+ child: ScreenUtilInit(
+ designSize: const Size(428, 932),
+ minTextAdapt: true,
+ builder: (BuildContext context, child) => MaterialApp(
+ builder: (context, widget) {
+ ScreenUtil.init(context);
+ return MediaQuery(
+ data: MediaQuery.of(context)
+ .copyWith(textScaler: TextScaler.noScaling),
+ child: widget!,
+ );
+ },
+ localizationsDelegates: context.localizationDelegates,
+ supportedLocales: context.supportedLocales,
+ locale: context.locale,
+ title: 'Evently',
+ navigatorKey: navigatorKey,
+ theme: EventlyAppTheme.theme(context),
+ initialRoute: '/',
+ routes: {
+ '/': (context) => const SplashScreen(),
+ RouteUtil.kRouteEventHub: (context) => const EventHubScreen(),
+ RouteUtil.kCreateEvent: (context) => const CreateEvent(),
+ RouteUtil.kBuyerResponse: (context) => const BuyerResponseScreen(),
+ },
+ ),
+ ),
+ );
+ }
+}
+
+bool _getIsCurrentDeviceTablet() {
+ final MediaQueryData mediaQuery =
+ MediaQueryData.fromView(PlatformDispatcher.instance.implicitView!);
+ return mediaQuery.size.shortestSide >= tabletMinWidth;
+}
diff --git a/evently/lib/models/denom.dart b/evently/lib/models/denom.dart
new file mode 100644
index 0000000000..b08ababff7
--- /dev/null
+++ b/evently/lib/models/denom.dart
@@ -0,0 +1,99 @@
+import 'package:evently/models/events.dart';
+import 'package:evently/utils/amount_formatter.dart';
+import 'package:evently/utils/constants.dart';
+import 'package:flutter/material.dart';
+import 'package:flutter/services.dart';
+import 'package:flutter_screenutil/flutter_screenutil.dart';
+
+import '../main.dart';
+
+class Denom {
+ final String name;
+ final String symbol;
+ final String icon;
+
+ Denom({required this.name, required this.symbol, required this.icon});
+
+ factory Denom.initial() {
+ return Denom(icon: '', name: '', symbol: '');
+ }
+
+ static List get availableDenoms => [
+ Denom(name: kUSDText, symbol: kUsdSymbol, icon: PngUtils.kIconDenomUsd),
+ Denom(name: kPylonText, symbol: kPylonSymbol, icon: PngUtils.kIconDenomPylon),
+ ];
+
+ TextInputFormatter getFormatter() {
+ if (symbol == kPylonSymbol) {
+ return AmountFormatter(maxDigits: kMaxPriceLength);
+ }
+ return AmountFormatter(maxDigits: kMaxPriceLength, isDecimal: false);
+ }
+
+ @override
+ String toString() {
+ return '{name: $name, symbol: $symbol, icon: $icon}';
+ }
+
+ Widget getIconWidget() {
+ switch (symbol) {
+ case kUsdSymbol:
+ case kPylonSymbol:
+ case kAtomSymbol:
+ case kEuroSymbol:
+ case kJunoSymbol:
+ return Image.asset(
+ icon,
+ height: 20.h,
+ fit: BoxFit.contain,
+ width: 20.w,
+ );
+ case kEthereumSymbol:
+ return Container(
+ padding: EdgeInsets.symmetric(vertical: isTablet ? 5.h : 10.h),
+ child: Image.asset(
+ icon,
+ height: 20.h,
+ ));
+ case kAgoricSymbol:
+ return Image.asset(
+ icon,
+ height: 15.h,
+ width: 15.w,
+ fit: BoxFit.contain,
+ );
+ default:
+ return Image.asset(icon);
+ }
+ }
+
+ String formatAmount({required String price}) {
+ switch (symbol) {
+ case kUsdSymbol:
+ case kPylonSymbol:
+ case kAtomSymbol:
+ case kEuroSymbol:
+ case kAgoricSymbol:
+ case kJunoSymbol:
+ return (double.parse(price.replaceAll(",", "").trim()) * kBigIntBase).toStringAsFixed(0);
+ case kEthereumSymbol:
+ return (double.parse(price.replaceAll(",", "").trim()) * kEthIntBase).toStringAsFixed(0);
+ default:
+ return (double.parse(price.replaceAll(",", "").trim()) * kBigIntBase).toStringAsFixed(0);
+ }
+ }
+
+ Map toJson() {
+ Map map = {};
+ map['name'] = name;
+ map['symbol'] = symbol;
+ map['icon'] = icon;
+ return map;
+ }
+
+ factory Denom.fromJson(Map json) => Denom(
+ name: json['name']!,
+ symbol: json['symbol']!,
+ icon: json['icon']!,
+ );
+}
diff --git a/evently/lib/models/events.dart b/evently/lib/models/events.dart
new file mode 100644
index 0000000000..5a17f9fe74
--- /dev/null
+++ b/evently/lib/models/events.dart
@@ -0,0 +1,266 @@
+import 'package:equatable/equatable.dart';
+import 'package:evently/utils/enums.dart';
+import 'package:fixnum/fixnum.dart';
+import 'package:floor/floor.dart';
+import 'package:pylons_sdk/low_level.dart';
+
+@entity
+class Events extends Equatable {
+ @primaryKey
+ final int? id;
+ final String recipeID;
+ final String eventName;
+ final String hostName;
+ final String thumbnail;
+ final String startDate;
+ final String endDate;
+ final String startTime;
+ final String endTime;
+ final String location;
+ final String description;
+ final String numberOfTickets;
+ final String price;
+ final String listOfPerks;
+ final String isFreeDrops;
+ final String cookbookID;
+ final String step;
+ final String denom;
+
+ const Events({
+ this.id,
+
+ ///* overview data
+ this.eventName = '',
+ this.hostName = '',
+ this.thumbnail = '',
+
+ ///* details
+ this.startDate = '',
+ this.endDate = '',
+ this.startTime = '',
+ this.endTime = '',
+ this.location = '',
+ this.description = '',
+
+ ///* perks
+ this.listOfPerks = '',
+
+ ///* price
+ this.numberOfTickets = '0',
+ this.price = '',
+ this.isFreeDrops = 'unselected',
+ this.denom = '',
+
+ ///* other
+ this.cookbookID = '',
+ this.recipeID = '',
+
+ ///* for tracking where its save as draft
+ this.step = '',
+ });
+
+ factory Events.fromRecipe(Recipe recipe) {
+ Map map =
+ _extractAttributeValues(recipe.entries.itemOutputs[0].strings);
+ return Events(
+ eventName: map[kEventName]!,
+ hostName: map[kEventHostName]!,
+ thumbnail: map[kThumbnail]!,
+ startDate: map[kStartDate]!,
+ endDate: map[kEndDate]!,
+ startTime: map[kStartTime]!,
+ endTime: map[kEndTime]!,
+ location: map[kLocation]!,
+ description: map[kDescription]!,
+ numberOfTickets: map[kNumberOfTickets]!,
+ price: map[kPrice]!,
+ listOfPerks: map[kPerks]!,
+ step: '',
+ cookbookID: map[kCookBookId]!,
+ recipeID: map[kRecipeId]!,
+ );
+ }
+
+ static Map _extractAttributeValues(
+ List attributes) {
+ final Map attributeValues = {};
+ for (final attribute in attributes) {
+ switch (attribute.key) {
+ case kEventName:
+ case kEventHostName:
+ case kThumbnail:
+ case kStartDate:
+ case kEndDate:
+ case kStartTime:
+ case kEndTime:
+ case kLocation:
+ case kDescription:
+ case kNumberOfTickets:
+ case kPrice:
+ case kPerks:
+ case kFreeDrop:
+ case kCookBookId:
+ case kRecipeId:
+ attributeValues[attribute.key] = attribute.value;
+ break;
+ default:
+ continue;
+ }
+ }
+
+ return attributeValues;
+ }
+
+ @override
+ List