diff --git a/praresi/.gitignore b/praresi/.gitignore
new file mode 100644
index 0000000..29a3a50
--- /dev/null
+++ b/praresi/.gitignore
@@ -0,0 +1,43 @@
+# 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
diff --git a/praresi/.metadata b/praresi/.metadata
new file mode 100644
index 0000000..dd8de3f
--- /dev/null
+++ b/praresi/.metadata
@@ -0,0 +1,30 @@
+# 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: "78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9"
+ channel: "stable"
+
+project_type: app
+
+# Tracks metadata for the flutter migrate command
+migration:
+ platforms:
+ - platform: root
+ create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
+ base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
+ - platform: android
+ create_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
+ base_revision: 78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9
+
+ # 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/praresi/README.md b/praresi/README.md
new file mode 100644
index 0000000..0ccd942
--- /dev/null
+++ b/praresi/README.md
@@ -0,0 +1,16 @@
+# praresi
+
+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/praresi/analysis_options.yaml b/praresi/analysis_options.yaml
new file mode 100644
index 0000000..0d29021
--- /dev/null
+++ b/praresi/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/praresi/android/.gitignore b/praresi/android/.gitignore
new file mode 100644
index 0000000..6f56801
--- /dev/null
+++ b/praresi/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/praresi/android/app/build.gradle b/praresi/android/app/build.gradle
new file mode 100644
index 0000000..c9d7671
--- /dev/null
+++ b/praresi/android/app/build.gradle
@@ -0,0 +1,85 @@
+plugins {
+ id "com.android.application"
+ // START: FlutterFire Configuration
+ id 'com.google.gms.google-services'
+ // END: FlutterFire Configuration
+ 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 "com.example.praresi"
+ // compileSdkVersion flutter.compileSdkVersion --> diganti dibawah
+ compileSdkVersion 34
+ 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 "com.example.praresi"
+ // // 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 flutter.minSdkVersion
+ // targetSdkVersion flutter.targetSdkVersion
+ // versionCode flutterVersionCode.toInteger()
+ // versionName flutterVersionName
+ // multiDexEnabled true // tambahan
+ // }
+
+ // baru dibawah
+ defaultConfig {
+ applicationId "com.example.praresi"
+ minSdkVersion 21
+ targetSdkVersion 34
+ versionCode flutterVersionCode.toInteger()
+ versionName flutterVersionName
+ multiDexEnabled true
+ }
+
+
+ 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
+ }
+ }
+}
+
+flutter {
+ source '../..'
+}
+
+dependencies {
+ implementation "androidx.multidex:multidex:2.0.1" // tambahan
+}
diff --git a/praresi/android/app/google-services.json b/praresi/android/app/google-services.json
new file mode 100644
index 0000000..5f77a46
--- /dev/null
+++ b/praresi/android/app/google-services.json
@@ -0,0 +1,48 @@
+{
+ "project_info": {
+ "project_number": "1084316054508",
+ "project_id": "snapresi-8e964",
+ "storage_bucket": "snapresi-8e964.firebasestorage.app"
+ },
+ "client": [
+ {
+ "client_info": {
+ "mobilesdk_app_id": "1:1084316054508:android:86d995859cf2c85df306c9",
+ "android_client_info": {
+ "package_name": "com.example.praresi"
+ }
+ },
+ "oauth_client": [],
+ "api_key": [
+ {
+ "current_key": "AIzaSyBR6rF7--1ZQYFCPVVjn1wMAt5qcmfMgGw"
+ }
+ ],
+ "services": {
+ "appinvite_service": {
+ "other_platform_oauth_client": []
+ }
+ }
+ },
+ {
+ "client_info": {
+ "mobilesdk_app_id": "1:1084316054508:android:38e16231a48eb280f306c9",
+ "android_client_info": {
+ "package_name": "com.example.snapresi"
+ }
+ },
+ "oauth_client": [],
+ "api_key": [
+ {
+ "current_key": "AIzaSyBR6rF7--1ZQYFCPVVjn1wMAt5qcmfMgGw"
+ }
+ ],
+ "services": {
+ "appinvite_service": {
+ "other_platform_oauth_client": []
+ }
+ }
+ }
+ ],
+ "configuration_version": "1"
+}
\ No newline at end of file
diff --git a/praresi/android/app/src/debug/AndroidManifest.xml b/praresi/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 0000000..399f698
--- /dev/null
+++ b/praresi/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/praresi/android/app/src/main/AndroidManifest.xml b/praresi/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..fdfc27f
--- /dev/null
+++ b/praresi/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/praresi/android/app/src/main/kotlin/com/example/praresi/MainActivity.kt b/praresi/android/app/src/main/kotlin/com/example/praresi/MainActivity.kt
new file mode 100644
index 0000000..ebd33be
--- /dev/null
+++ b/praresi/android/app/src/main/kotlin/com/example/praresi/MainActivity.kt
@@ -0,0 +1,6 @@
+package com.example.praresi
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity: FlutterActivity() {
+}
diff --git a/praresi/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png b/praresi/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000..51c2576
Binary files /dev/null and b/praresi/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png differ
diff --git a/praresi/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png b/praresi/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000..4b73f44
Binary files /dev/null and b/praresi/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png differ
diff --git a/praresi/android/app/src/main/res/drawable-v21/launch_background.xml b/praresi/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 0000000..f74085f
--- /dev/null
+++ b/praresi/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/praresi/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png b/praresi/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000..4e18c31
Binary files /dev/null and b/praresi/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png differ
diff --git a/praresi/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png b/praresi/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000..322246e
Binary files /dev/null and b/praresi/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png differ
diff --git a/praresi/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png b/praresi/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png
new file mode 100644
index 0000000..90c71d3
Binary files /dev/null and b/praresi/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png differ
diff --git a/praresi/android/app/src/main/res/drawable/launch_background.xml b/praresi/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000..304732f
--- /dev/null
+++ b/praresi/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/praresi/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/praresi/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000..5f349f7
--- /dev/null
+++ b/praresi/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/praresi/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/praresi/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..d5dff77
Binary files /dev/null and b/praresi/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/praresi/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/praresi/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..9df92b3
Binary files /dev/null and b/praresi/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/praresi/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/praresi/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..34c7137
Binary files /dev/null and b/praresi/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/praresi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/praresi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..a023abd
Binary files /dev/null and b/praresi/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/praresi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/praresi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..74d4aaa
Binary files /dev/null and b/praresi/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/praresi/android/app/src/main/res/values-night/styles.xml b/praresi/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 0000000..06952be
--- /dev/null
+++ b/praresi/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/praresi/android/app/src/main/res/values/colors.xml b/praresi/android/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..2ff3651
--- /dev/null
+++ b/praresi/android/app/src/main/res/values/colors.xml
@@ -0,0 +1,4 @@
+
+
+ #1976D2
+
\ No newline at end of file
diff --git a/praresi/android/app/src/main/res/values/styles.xml b/praresi/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..cb1ef88
--- /dev/null
+++ b/praresi/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/praresi/android/app/src/profile/AndroidManifest.xml b/praresi/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 0000000..399f698
--- /dev/null
+++ b/praresi/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
diff --git a/praresi/android/build.gradle b/praresi/android/build.gradle
new file mode 100644
index 0000000..e83fb5d
--- /dev/null
+++ b/praresi/android/build.gradle
@@ -0,0 +1,30 @@
+buildscript {
+ ext.kotlin_version = '1.7.10'
+ repositories {
+ google()
+ mavenCentral()
+ }
+
+ dependencies {
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
+ }
+}
+
+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/praresi/android/gradle.properties b/praresi/android/gradle.properties
new file mode 100644
index 0000000..598d13f
--- /dev/null
+++ b/praresi/android/gradle.properties
@@ -0,0 +1,3 @@
+org.gradle.jvmargs=-Xmx4G
+android.useAndroidX=true
+android.enableJetifier=true
diff --git a/praresi/android/gradle/wrapper/gradle-wrapper.properties b/praresi/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..3c472b9
--- /dev/null
+++ b/praresi/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.5-all.zip
diff --git a/praresi/android/settings.gradle b/praresi/android/settings.gradle
new file mode 100644
index 0000000..495528e
--- /dev/null
+++ b/praresi/android/settings.gradle
@@ -0,0 +1,32 @@
+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-gradle-plugin" version "1.0.0" apply false
+ }
+}
+
+plugins {
+ id "dev.flutter.flutter-plugin-loader" version "1.0.0"
+ id "com.android.application" version "7.3.0" apply false
+ // START: FlutterFire Configuration
+ id "com.google.gms.google-services" version "4.3.15" apply false
+ // END: FlutterFire Configuration
+}
+
+include ":app"
diff --git a/praresi/assets/data/regions.json b/praresi/assets/data/regions.json
new file mode 100644
index 0000000..6fd6f1d
--- /dev/null
+++ b/praresi/assets/data/regions.json
@@ -0,0 +1,738 @@
+[
+ {
+ "provinsi":"Aceh",
+ "kota":[
+ "Kota Banda Aceh",
+ "Kota Sabang",
+ "Kota Lhokseumawe",
+ "Kota Langsa",
+ "Kota Subulussalam",
+ "Kab. Aceh Selatan",
+ "Kab. Aceh Tenggara",
+ "Kab. Aceh Timur",
+ "Kab. Aceh Tengah",
+ "Kab. Aceh Barat",
+ "Kab. Aceh Besar",
+ "Kab. Pidie",
+ "Kab. Aceh Utara",
+ "Kab. Simeulue",
+ "Kab. Aceh Singkil",
+ "Kab. Bireun",
+ "Kab. Aceh Barat Daya",
+ "Kab. Gayo Lues",
+ "Kab. Aceh Jaya",
+ "Kab. Nagan Raya",
+ "Kab. Aceh Tamiang",
+ "Kab. Bener Meriah",
+ "Kab. Pidie Jaya"
+ ]
+ },
+
+ {
+ "provinsi":"Sumatera Utara",
+ "kota":[
+ "Kota Medan",
+ "Kota Pematang Siantar",
+ "Kota Sibolga",
+ "Kota Tanjung Balai",
+ "Kota Binjai",
+ "Kota Tebing Tinggi",
+ "Kota Padang Sidempuan",
+ "Kota Gunung Sitoli",
+ "Kab. Serdang Bedagai",
+ "Kab. Samosir ",
+ "Kab. Humbang Hasundutan",
+ "Kab. Pakpak Bharat",
+ "Kab. Nias Selatan",
+ "Kab. Mandailing Natal",
+ "Kab. Toba Samosir",
+ "Kab. Dairi",
+ "Kab. Labuhan Batu",
+ "Kab. Asahan",
+ "Kab. Simalungun",
+ "Kab. Deli Serdang",
+ "Kab. Karo",
+ "Kab. Langkat",
+ "Kab. Nias",
+ "Kab. Tapanuli Selatan",
+ "Kab. Tapanuli Utara",
+ "Kab. Tapanuli Tengah",
+ "Kab. Batu Bara",
+ "Kab. Padang Lawas Utara",
+ "Kab. Padang Lawas",
+ "Kab. Labuhanbatu Selatan",
+ "Kab. Labuhanbatu Utara",
+ "Kab. Nias Utara",
+ "Kab. Nias Barat"
+ ]
+ },
+
+ {
+ "provinsi":"Sumatera Barat",
+ "kota":[
+ "Kota Padang",
+ "Kota Solok",
+ "Kota Sawhlunto",
+ "Kota Padang Panjang",
+ "Kota Bukittinggi",
+ "Kota Payakumbuh",
+ "Kota Pariaman",
+ "Kab. Pasaman Barat",
+ "Kab. Solok Selatan",
+ "Kab. Dharmasraya",
+ "Kab. Kepulauan Mentawai",
+ "Kab. Pasaman",
+ "Kab. Lima Puluh Kota",
+ "Kab. Agam",
+ "Kab. Padang Pariaman",
+ "Kab. Tanah Datar",
+ "Kab. Sijunjung",
+ "Kab. Solok",
+ "Kab. Pesisir Selatan"
+ ]
+ },
+
+ {
+ "provinsi":"Riau",
+ "kota":[
+ "Kota Pekan Baru",
+ "Kota Dumai",
+ "Kab. Kepulauan Meranti",
+ "Kab. Kuantan Singingi",
+ "Kab. Siak",
+ "Kab. Rokan Hilir",
+ "Kab. Rokan Hulu",
+ "Kab. Pelalawan",
+ "Kab. Indragiri Hilir",
+ "Kab. Bengkalis",
+ "Kab. Indragiri Hulu",
+ "Kab. Kampar"
+ ]
+ },
+
+ {
+ "provinsi":"Jambi",
+ "kota":[
+ "Kota Jambi",
+ "Kota Sungai Penuh",
+ "Kab. Tebo",
+ "Kab. Bungo",
+ "Kab. Tanjung Jabung Timur",
+ "Kab. Tanjung Jabung Barat",
+ "Kab. Muaro Jambi",
+ "Kab. Batanghari",
+ "Kab. Sarolangun",
+ "Kab. Merangin",
+ "Kab. Kerinci"
+ ]
+ },
+
+ {
+ "provinsi":"Sumatera Selatan",
+ "kota":[
+ "Kota Palembang",
+ "Kota Pagar Alam",
+ "Kota Lubuk Linggau",
+ "Kota Prabumulih",
+ "Kab. Musi Rawas Utara",
+ "Kab. Penukal Abab Lematang Ilir",
+ "Kab. Empat Lawang",
+ "Kab. Ogan Ilir ",
+ "Kab. Ogan Komering Ulu Selatan ",
+ "Kab. Ogan Komering Ulu Timur ",
+ "Kab. Banyuasin",
+ "Kab. Musi Banyuasin",
+ "Kab. Musi Rawas",
+ "Kab. Lahat",
+ "Kab. Muara Enim",
+ "Kab. Ogan Komering Ilir",
+ "Kab. Ogan Komering Ulu"
+ ]
+ },
+
+ {
+ "provinsi":"Bengkulu",
+ "kota":[
+ "Kota Bengkulu",
+ "Kab. Bengkulu Tengah",
+ "Kab. Kepahiang ",
+ "Kab. Lebong",
+ "Kab. Muko Muko",
+ "Kab. Seluma",
+ "Kab. Kaur",
+ "Kab. Bengkulu Utara",
+ "Kab. Rejang Lebong",
+ "Kab. Bengkulu Selatan"
+ ]
+ },
+
+ {
+ "provinsi":"Lampung",
+ "kota":[
+ "Kota Bandar Lampung",
+ "Kota Metro",
+ "Kab. Pesisir Barat",
+ "Kab. Tulangbawang Barat",
+ "Kab. Mesuji",
+ "Kab. Pringsewu",
+ "Kab. Pesawaran",
+ "Kab. Way Kanan",
+ "Kab. Lampung Timur",
+ "Kab. Tanggamus",
+ "Kab. Tulang Bawang",
+ "Kab. Lampung Barat",
+ "Kab. Lampung Utara",
+ "Kab. Lampung Tengah",
+ "Kab. Lampung Selatan"
+ ]
+ },
+
+ {
+ "provinsi":"Kepulauan Bangka Belitung",
+ "kota":[
+ "Kota Pangkal Pinang",
+ "Kab. Belitung Timur",
+ "Kab. Bangka Barat",
+ "Kab. Bangka Tengah",
+ "Kab. Bangka Selatan",
+ "Kab. Belitung",
+ "Kab. Bangka"
+ ]
+ },
+
+ {
+ "provinsi":"Kepulauan Riau",
+ "kota":[
+ "Kota Batam",
+ "Kota Tanjung Pinang",
+ "Kab. Kepulauan Anambas",
+ "Kab. Lingga ",
+ "Kab. Natuna",
+ "Kab. Karimun",
+ "Kab. Bintan"
+ ]
+ },
+
+ {
+ "provinsi":"DKI Jakarta",
+ "kota":[
+ "Kota Jakarta Timur",
+ "Kota Jakarta Selatan",
+ "Kota Jakarta Barat",
+ "Kota Jakarta Utara",
+ "Kota Jakarta Pusat",
+ "Kab. Kepulauan Seribu"
+ ]
+ },
+
+ {
+ "provinsi":"Jawa Barat",
+ "kota":[
+ "Kota Bandung",
+ "Kota Banjar",
+ "Kota Tasikmalaya",
+ "Kota Cimahi",
+ "Kota Depok",
+ "Kota Bekasi",
+ "Kota Cirebon",
+ "Kota Sukabumi",
+ "Kota Bogor",
+ "Kab. Pangandaran",
+ "Kab. Bandung Barat",
+ "Kab. Bekasi",
+ "Kab. Karawang",
+ "Kab. Purwakarta",
+ "Kab. Subang",
+ "Kab. Indramayu",
+ "Kab. Sumedang",
+ "Kab. Majalengka",
+ "Kab. Cirebon",
+ "Kab. Kuningan",
+ "Kab. Ciamis",
+ "Kab. Tasikmalaya",
+ "Kab. Garut",
+ "Kab. Bandung",
+ "Kab. Cianjur",
+ "Kab. Sukabumi",
+ "Kab. Bogor"
+ ]
+ },
+
+ {
+ "provinsi":"Jawa Tengah",
+ "kota":[
+ "Kota Semarang",
+ "Kota Tegal",
+ "Kota Pekalongan",
+ "Kota Salatiga",
+ "Kota Surakarta",
+ "Kota Magelang",
+ "Kab. Brebes",
+ "Kab. Tegal",
+ "Kab. Pemalang",
+ "Kab. Pekalongan",
+ "Kab. Batang",
+ "Kab. Kendal",
+ "Kab. Temanggung",
+ "Kab. Semarang",
+ "Kab. Demak",
+ "Kab. Jepara",
+ "Kab. Kudus",
+ "Kab. Pati",
+ "Kab. Rembang",
+ "Kab. Blora",
+ "Kab. Grobogan",
+ "Kab. Sragen",
+ "Kab. Karanganyar",
+ "Kab. Wonogiri",
+ "Kab. Sukoharjo",
+ "Kab. Klaten",
+ "Kab. Boyolali",
+ "Kab. Magelang",
+ "Kab. Wonosobo",
+ "Kab. Purworejo",
+ "Kab. Kebumen",
+ "Kab. Banjarnegara",
+ "Kab. Purbalingga",
+ "Kab. Banyumas",
+ "Kab. Cilacap"
+ ]
+ },
+
+ {
+ "provinsi":"DI Yogyakarta",
+ "kota":[
+ "Kota Yogyakarta",
+ "Kab. Sleman",
+ "Kab. Gunung Kidul",
+ "Kab. Bantul",
+ "Kab. Kulon Progo"
+ ]
+ },
+
+ {
+ "provinsi":"Jawa Timur",
+ "kota":[
+ "Kota Surabaya",
+ "Kota Batu",
+ "Kota Madiun",
+ "Kota Mojokerto",
+ "Kota Pasuruan",
+ "Kota Probolinggo",
+ "Kota Malang",
+ "Kota Blitar",
+ "Kota Kediri",
+ "Kab. Sumenep",
+ "Kab. Pamekasan",
+ "Kab. Sampang",
+ "Kab. Bangkalan",
+ "Kab. Gresik",
+ "Kab. Lamongan",
+ "Kab. Tuban",
+ "Kab. Bojonegoro",
+ "Kab. Ngawi",
+ "Kab. Magetan",
+ "Kab. Madiun",
+ "Kab. Nganjuk",
+ "Kab. Jombang",
+ "Kab. Mojokerto",
+ "Kab. Sidoarjo",
+ "Kab. Pasuruan",
+ "Kab. Probolinggo",
+ "Kab. Situbondo",
+ "Kab. Bondowoso",
+ "Kab. Banyuwangi",
+ "Kab. Jember",
+ "Kab. Lumajang",
+ "Kab. Malang",
+ "Kab. Kediri",
+ "Kab. Blitar",
+ "Kab. Tulungagung",
+ "Kab. Trenggalek",
+ "Kab. Ponorogo",
+ "Kab. Pacitan"
+ ]
+ },
+
+ {
+ "provinsi":"Banten",
+ "kota":[
+ "Kota Serang",
+ "Kota Cilegon",
+ "Kota Tangerang",
+ "Kota Tangerang Selatan",
+ "Kab. Serang",
+ "Kab. Tangerang",
+ "Kab. Lebak",
+ "Kab. Pandeglang"
+ ]
+ },
+
+ {
+ "provinsi":"Bali",
+ "kota":[
+ "Kota Denpasar",
+ "Kab. Buleleng",
+ "Kab. Karangasem",
+ "Kab. Bangli",
+ "Kab. Klungkung",
+ "Kab. Gianyar",
+ "Kab. Badung",
+ "Kab. Tabanan",
+ "Kab. Jembrana"
+ ]
+ },
+
+ {
+ "provinsi":"Nusa Tenggara Barat",
+ "kota":[
+ "Kota Mataram",
+ "Kota Bima",
+ "Kab. Lombok Utara",
+ "Kab. Sumbawa Barat",
+ "Kab. Bima",
+ "Kab. Dompu",
+ "Kab. Sumbawa ",
+ "Kab. Lombok Timur",
+ "Kab. Lombok Tengah",
+ "Kab. Lombok Barat"
+ ]
+ },
+
+ {
+ "provinsi":"Nusa Tenggara Timur",
+ "kota":[
+ "Kota Kupang",
+ "Kab. Malaka",
+ "Kab. Sabu Raijua",
+ "Kab. Manggarai Timur",
+ "Kab. Sumba Barat Daya",
+ "Kab. Sumba Tengah",
+ "Kab. Nagekeo",
+ "Kab. Manggarai Barat",
+ "Kab. Rote Ndao",
+ "Kab. Lembata",
+ "Kab. Sumba Barat",
+ "Kab. Sumba Timur",
+ "Kab. Manggarai",
+ "Kab. Ngada",
+ "Kab. Ende",
+ "Kab. Sikka",
+ "Kab. Flores Timur",
+ "Kab. Alor",
+ "Kab. Belu",
+ "Kab. Timor Tengah Utara",
+ "Kab. Timor Tengah Selatan",
+ "Kab. Kupang"
+ ]
+ },
+ {
+ "provinsi":"Kalimantan Barat",
+ "kota":[
+ "Kota Pontianak",
+ "Kota Singkawang",
+ "Kab. Kubu Raya",
+ "Kab. Kayong Utara",
+ "Kab. Sekadau",
+ "Kab. Melawi",
+ "Kab. Landak",
+ "Kab. Bengkayang",
+ "Kab. Kapuas Hulu",
+ "Kab. Sintang ",
+ "Kab. Ketapang",
+ "Kab. Sanggau ",
+ "Kab. Mempawah",
+ "Kab. Sambas"
+ ]
+ },
+
+ {
+ "provinsi":"Kalimantan Tengah",
+ "kota":[
+ "Kota Palangkaraya",
+ "Kab. Barito Timur",
+ "Kab. Murung Raya",
+ "Kab. Pulang Pisau",
+ "Kab. Gunung Mas",
+ "Kab. Lamandau",
+ "Kab. Sukamara",
+ "Kab. Seruyan",
+ "Kab. Katingan",
+ "Kab. Barito Utara",
+ "Kab. Barito Selatan",
+ "Kab. Kapuas",
+ "Kab. Kotawaringin Timur",
+ "Kab. Kotawaringin Barat"
+ ]
+ },
+
+ {
+ "provinsi":"Kalimantan Selatan",
+ "kota":[
+ "Kota Banjarmasin",
+ "Kota Banjarbaru",
+ "Kab. Balangan",
+ "Kab. Tanah Bambu",
+ "Kab. Tabalong",
+ "Kab. Hulu Sungai Utara",
+ "Kab. Hulu Sungai Tengah",
+ "Kab. Hulu Sungai Selatan",
+ "Kab. Tapin",
+ "Kab. Barito Kuala",
+ "Kab. Banjar",
+ "Kab. Kotabaru",
+ "Kab. Tanah Laut"
+ ]
+ },
+
+ {
+ "provinsi":"Kalimantan Timur",
+ "kota":[
+ "Kota Samarinda",
+ "Kota Bontang",
+ "Kota Balikpapan",
+ "Kab. Mahakam Ulu",
+ "Kab. Penajam Paser Utara",
+ "Kab. Kutai Timur",
+ "Kab. Kutai Barat",
+ "Kab. Berau",
+ "Kab. Kutai Kertanegara",
+ "Kab. Paser"
+ ]
+ },
+
+ {
+ "provinsi":"Kalimantan Utara",
+ "kota":[
+ "Kota Tarakan",
+ "Kab. Tana Tidung",
+ "Kab. Nunukan",
+ "Kab. Malinau",
+ "Kab. Bulungan"
+ ]
+ },
+
+ {
+ "provinsi":"Sulawesi Utara",
+ "kota":[
+ "Kota Manado",
+ "Kota Tomohon",
+ "Kota Bitung",
+ "Kota Kotamobagu",
+ "Kab. Bolaang Mangondow Selatan",
+ "Kab. Bolaang Mangondow Timur",
+ "Kab. Kepulauan Siau Tagulandang Biaro",
+ "Kab. Bolaang Mangondow Utara",
+ "Kab. Minahasa Tenggara",
+ "Kab. Minahasa Utara",
+ "Kab. Minahasa Selatan",
+ "Kab. Kepulauan Talaud",
+ "Kab. Kepulauan Sangihe",
+ "Kab. Minahasa",
+ "Kab. Bolaang Mangondow"
+ ]
+ },
+
+ {
+ "provinsi":"Sulawesi Tengah",
+ "kota":[
+ "Kota Palu",
+ "Kab. Morowali Utara",
+ "Kab. Banggai Laut",
+ "Kab. Sigi",
+ "Kab. Tojo Una-Una",
+ "Kab. Parigi Moutong",
+ "Kab. Banggai Kepulauan",
+ "Kab. Morowali",
+ "Kab. Buol",
+ "Kab. Toli-Toli",
+ "Kab. Donggala",
+ "Kab. Poso",
+ "Kab. Banggai"
+ ]
+ },
+
+ {
+ "provinsi":"Sulawesi Selatan",
+ "kota":[
+ "Kota Makasar",
+ "Kota Palopo",
+ "Kota Pare Pare",
+ "Kab. Toraja Utara",
+ "Kab. Luwu Timur",
+ "Kab. Luwu Utara",
+ "Kab. Tana Toraja",
+ "Kab. Luwu",
+ "Kab. Enrekang",
+ "Kab. Pinrang",
+ "Kab. Sidenreng Rappang",
+ "Kab. Wajo",
+ "Kab. Soppeng",
+ "Kab. Barru",
+ "Kab. Pangkajene Kepulauan",
+ "Kab. Maros",
+ "Kab. Bone",
+ "Kab. Sinjai",
+ "Kab. Gowa",
+ "Kab. Takalar",
+ "Kab. Jeneponto",
+ "Kab. Bantaeng",
+ "Kab. Bulukumba",
+ "Kab. Kepulauan Selayar"
+ ]
+ },
+
+ {
+ "provinsi":"Sulawesi Tenggara",
+ "kota":[
+ "Kota Kendari",
+ "Kota Bau Bau",
+ "Kab. Buton Selatan",
+ "Kab. Buton Tengah",
+ "Kab. Muna Barat",
+ "Kab. Konawe Kepulauan",
+ "Kab. Kolaka Timur",
+ "Kab. Buton Utara",
+ "Kab. Konawe Utara",
+ "Kab. Kolaka Utara",
+ "Kab. Wakatobi",
+ "Kab. Bombana",
+ "Kab. Konawe Selatan",
+ "Kab. Buton",
+ "Kab. Muna",
+ "Kab. Konawe",
+ "Kab. Kolaka"
+ ]
+ },
+
+ {
+ "provinsi":"Gorontalo",
+ "kota":[
+ "Kota Gorontalo",
+ "Kab. Pohuwato",
+ "Kab. Bone Bolango",
+ "Kab. Boalemo",
+ "Kab. Gorontalo",
+ "Kab. Gorontalo Utara"
+ ]
+ },
+
+ {
+ "provinsi":"Sulawesi Barat",
+ "kota":[
+ "Kab. Majene",
+ "Kab. Polowali Mandar",
+ "Kab. Mamasa",
+ "Kab. Mamuju",
+ "Kab. Mamuju Utara",
+ "Kab. Mamuju Tengah"
+ ]
+ },
+
+ {
+ "provinsi":"Maluku",
+ "kota":[
+ "Kota Ambon",
+ "Kota Tual",
+ "Kab. Buru Selatan",
+ "Kab. Maluku Barat Daya",
+ "Kab. Kepulauan Aru",
+ "Kab. Seram Bagian Barat ",
+ "Kab. Seram Bagian Timur",
+ "Kab. Buru",
+ "Kab. Maluku Tenggara Barat",
+ "Kab. Maluku Tenggara",
+ "Kab. Maluku Tengah"
+ ]
+ },
+
+ {
+ "provinsi":"Maluku Utara",
+ "kota":[
+ "Kota Ternate",
+ "Kota Tidore Kepulauan",
+ "Kab. Pulau Taliabu",
+ "Kab. Pulau Morotai",
+ "Kab. Halmahera Timur",
+ "Kab. Kepulauan Sula",
+ "Kab. Halmahera Selatan",
+ "Kab. Halmahera Utara",
+ "Kab. Halmahera Tengah",
+ "Kab. Halmahera Barat"
+ ]
+ },
+
+ {
+ "provinsi": "Papua",
+ "kota": [
+ "Kota Jayapura",
+ "Kab. Sarmi",
+ "Kab. Keerom",
+ "Kab. Jayapura",
+ "Kab. Mamberamo Raya",
+ "Kab. Supiori",
+ "Kab. Biak Numfor",
+ "Kab. Kepulauan Yapen",
+ "Kab. Waropen"
+ ]
+ },
+
+ {
+ "provinsi": "Papua Barat",
+ "kota": [
+ "Kab. Pegunungan Arfak",
+ "Kab. Manokwari Selatan",
+ "Kab. Kaimana",
+ "Kab. Teluk Wondama",
+ "Kab. Teluk Bintuni",
+ "Kab. FakFak",
+ "Kab. Manokwari"
+ ]
+ },
+ {
+ "provinsi": "Papua Barat Daya",
+ "kota": [
+ "Kota Sorong",
+ "Kab. Maybrat",
+ "Kab. Tambrauw",
+ "Kab. Raja Ampat",
+ "Kab. Sorong Selatan",
+ "Kab. Sorong"
+ ]
+ },
+ {
+ "provinsi": "Papua Tengah",
+ "kota": [
+ "Kab. Nabire",
+ "Kab. Paniai",
+ "Kab. Mimika",
+ "Kab. Dogiyai",
+ "Kab. Intan Jaya",
+ "Kab. Deiyai",
+ "Kab. Puncak",
+ "Kab. Puncak Jaya"
+ ]
+ },
+ {
+ "provinsi": "Papua Pegunungan",
+ "kota": [
+ "Kab. Jayawijaya",
+ "Kab. Lanny Jaya",
+ "Kab. Mamberamo Tengah",
+ "Kab. Nduga",
+ "Kab. Pegunungan Bintang",
+ "Kab. Tolikara",
+ "Kab. Yahukimo",
+ "Kab. Yalimo"
+ ]
+ },
+ {
+ "provinsi": "Papua Selatan",
+ "kota": [
+ "Kab. Merauke",
+ "Kab. Asmat",
+ "Kab. Boven Digoel",
+ "Kab. Mappi"
+ ]
+ }
+]
diff --git a/praresi/assets/images/app_icon.png b/praresi/assets/images/app_icon.png
new file mode 100644
index 0000000..bf94bfa
Binary files /dev/null and b/praresi/assets/images/app_icon.png differ
diff --git a/praresi/assets/images/praresi_logo.png b/praresi/assets/images/praresi_logo.png
new file mode 100644
index 0000000..d955b16
Binary files /dev/null and b/praresi/assets/images/praresi_logo.png differ
diff --git a/praresi/firebase.json b/praresi/firebase.json
new file mode 100644
index 0000000..d917d8d
--- /dev/null
+++ b/praresi/firebase.json
@@ -0,0 +1 @@
+{"flutter":{"platforms":{"android":{"default":{"projectId":"snapresi-8e964","appId":"1:1084316054508:android:86d995859cf2c85df306c9","fileOutput":"android/app/google-services.json"}},"dart":{"lib/firebase_options.dart":{"projectId":"snapresi-8e964","configurations":{"android":"1:1084316054508:android:86d995859cf2c85df306c9"}}}}}}
\ No newline at end of file
diff --git a/praresi/ios/.gitignore b/praresi/ios/.gitignore
new file mode 100644
index 0000000..7a7f987
--- /dev/null
+++ b/praresi/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/praresi/ios/Flutter/AppFrameworkInfo.plist b/praresi/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 0000000..9625e10
--- /dev/null
+++ b/praresi/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
+ 11.0
+
+
diff --git a/praresi/ios/Flutter/Debug.xcconfig b/praresi/ios/Flutter/Debug.xcconfig
new file mode 100644
index 0000000..592ceee
--- /dev/null
+++ b/praresi/ios/Flutter/Debug.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/praresi/ios/Flutter/Release.xcconfig b/praresi/ios/Flutter/Release.xcconfig
new file mode 100644
index 0000000..592ceee
--- /dev/null
+++ b/praresi/ios/Flutter/Release.xcconfig
@@ -0,0 +1 @@
+#include "Generated.xcconfig"
diff --git a/praresi/ios/Runner.xcodeproj/project.pbxproj b/praresi/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 0000000..ab91d10
--- /dev/null
+++ b/praresi/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,614 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
+ 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 */; };
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
+/* 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 = ""; };
+ 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 = ""; };
+ 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; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 9740EEB11CF90186004384FC /* Flutter */ = {
+ isa = PBXGroup;
+ children = (
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */,
+ );
+ name = Flutter;
+ sourceTree = "";
+ };
+ 331C8082294A63A400263BE5 /* RunnerTests */ = {
+ isa = PBXGroup;
+ children = (
+ 331C807B294A618700263BE5 /* RunnerTests.swift */,
+ );
+ path = RunnerTests;
+ 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 */,
+ 331C807E294A63A400263BE5 /* Frameworks */,
+ 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 = 1430;
+ 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;
+ 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;
+ 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 = 11.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)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.praresi;
+ 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;
+ baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */;
+ 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.praresi.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;
+ baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */;
+ 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.praresi.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;
+ baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */;
+ 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.praresi.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;
+ 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;
+ 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 = 11.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;
+ 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;
+ 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 = 11.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)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.praresi;
+ 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)";
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.praresi;
+ 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/praresi/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/praresi/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..919434a
--- /dev/null
+++ b/praresi/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/praresi/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/praresi/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/praresi/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/praresi/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/praresi/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/praresi/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/praresi/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/praresi/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 0000000..87131a0
--- /dev/null
+++ b/praresi/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/praresi/ios/Runner.xcworkspace/contents.xcworkspacedata b/praresi/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..1d526a1
--- /dev/null
+++ b/praresi/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/praresi/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/praresi/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/praresi/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/praresi/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/praresi/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 0000000..f9b0d7c
--- /dev/null
+++ b/praresi/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/praresi/ios/Runner/AppDelegate.swift b/praresi/ios/Runner/AppDelegate.swift
new file mode 100644
index 0000000..70693e4
--- /dev/null
+++ b/praresi/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/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..d36b1fa
--- /dev/null
+++ b/praresi/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/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 0000000..fd8621e
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 0000000..696ee72
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 0000000..873e4f1
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 0000000..b19a11b
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 0000000..ee4b2e6
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 0000000..845bbe7
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 0000000..35445a2
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 0000000..873e4f1
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 0000000..f4f5a9f
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 0000000..087f690
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png
new file mode 100644
index 0000000..8cee2bd
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png
new file mode 100644
index 0000000..fca0f9f
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png
new file mode 100644
index 0000000..1245103
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png
new file mode 100644
index 0000000..f9956aa
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 0000000..087f690
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 0000000..b0bc568
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png
new file mode 100644
index 0000000..d5dff77
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png
new file mode 100644
index 0000000..a023abd
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 0000000..b9326e6
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 0000000..e3e30cb
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file mode 100644
index 0000000..0717fca
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 0000000..0bedcf2
--- /dev/null
+++ b/praresi/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/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/praresi/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 0000000..89c2725
--- /dev/null
+++ b/praresi/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/praresi/ios/Runner/Base.lproj/LaunchScreen.storyboard b/praresi/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 0000000..f2e259c
--- /dev/null
+++ b/praresi/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/praresi/ios/Runner/Base.lproj/Main.storyboard b/praresi/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 0000000..f3c2851
--- /dev/null
+++ b/praresi/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/praresi/ios/Runner/Info.plist b/praresi/ios/Runner/Info.plist
new file mode 100644
index 0000000..0208fae
--- /dev/null
+++ b/praresi/ios/Runner/Info.plist
@@ -0,0 +1,49 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleDisplayName
+ Praresi
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ praresi
+ 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/praresi/ios/Runner/Runner-Bridging-Header.h b/praresi/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 0000000..308a2a5
--- /dev/null
+++ b/praresi/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/praresi/ios/RunnerTests/RunnerTests.swift b/praresi/ios/RunnerTests/RunnerTests.swift
new file mode 100644
index 0000000..86a7c3b
--- /dev/null
+++ b/praresi/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/praresi/lib/config/models/user_model.dart b/praresi/lib/config/models/user_model.dart
new file mode 100644
index 0000000..e69de29
diff --git a/praresi/lib/firebase_options.dart b/praresi/lib/firebase_options.dart
new file mode 100644
index 0000000..75eb04b
--- /dev/null
+++ b/praresi/lib/firebase_options.dart
@@ -0,0 +1,62 @@
+// File generated by FlutterFire CLI.
+// ignore_for_file: type=lint
+import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
+import 'package:flutter/foundation.dart'
+ show defaultTargetPlatform, kIsWeb, TargetPlatform;
+
+/// Default [FirebaseOptions] for use with your Firebase apps.
+///
+/// Example:
+/// ```dart
+/// import 'firebase_options.dart';
+/// // ...
+/// await Firebase.initializeApp(
+/// options: DefaultFirebaseOptions.currentPlatform,
+/// );
+/// ```
+class DefaultFirebaseOptions {
+ static FirebaseOptions get currentPlatform {
+ if (kIsWeb) {
+ throw UnsupportedError(
+ 'DefaultFirebaseOptions have not been configured for web - '
+ 'you can reconfigure this by running the FlutterFire CLI again.',
+ );
+ }
+ switch (defaultTargetPlatform) {
+ case TargetPlatform.android:
+ return android;
+ case TargetPlatform.iOS:
+ throw UnsupportedError(
+ 'DefaultFirebaseOptions have not been configured for ios - '
+ 'you can reconfigure this by running the FlutterFire CLI again.',
+ );
+ case TargetPlatform.macOS:
+ throw UnsupportedError(
+ 'DefaultFirebaseOptions have not been configured for macos - '
+ 'you can reconfigure this by running the FlutterFire CLI again.',
+ );
+ case TargetPlatform.windows:
+ throw UnsupportedError(
+ 'DefaultFirebaseOptions have not been configured for windows - '
+ 'you can reconfigure this by running the FlutterFire CLI again.',
+ );
+ case TargetPlatform.linux:
+ throw UnsupportedError(
+ 'DefaultFirebaseOptions have not been configured for linux - '
+ 'you can reconfigure this by running the FlutterFire CLI again.',
+ );
+ default:
+ throw UnsupportedError(
+ 'DefaultFirebaseOptions are not supported for this platform.',
+ );
+ }
+ }
+
+ static const FirebaseOptions android = FirebaseOptions(
+ apiKey: 'AIzaSyBR6rF7--1ZQYFCPVVjn1wMAt5qcmfMgGw',
+ appId: '1:1084316054508:android:86d995859cf2c85df306c9',
+ messagingSenderId: '1084316054508',
+ projectId: 'snapresi-8e964',
+ storageBucket: 'snapresi-8e964.firebasestorage.app',
+ );
+}
diff --git a/praresi/lib/main.dart b/praresi/lib/main.dart
new file mode 100644
index 0000000..111b73a
--- /dev/null
+++ b/praresi/lib/main.dart
@@ -0,0 +1,336 @@
+import 'package:flutter/material.dart';
+import 'package:flutter/services.dart';
+import 'package:get/get.dart';
+import 'package:firebase_core/firebase_core.dart';
+import 'package:praresi/presentation/controllers/internet_controller.dart';
+import 'package:praresi/services/bubble_services.dart';
+import 'firebase_options.dart';
+import 'presentation/routes/app_pages.dart';
+import 'presentation/routes/app_routes.dart';
+import 'package:intl/date_symbol_data_local.dart';
+
+// ✅ Entry point overlay
+@pragma("vm:entry-point")
+void overlayMain() {
+ runApp(
+ const MaterialApp(
+ debugShowCheckedModeBanner: false,
+ home: OverlayBubble(),
+ ),
+ );
+}
+
+
+
+
+class OverlayBubble extends StatefulWidget {
+ const OverlayBubble({super.key});
+
+ @override
+ State createState() => _OverlayBubbleState();
+}
+
+class _OverlayBubbleState extends State with WidgetsBindingObserver {
+ bool _showInput = false;
+ final TextEditingController _controller = TextEditingController();
+
+ @override
+ void initState() {
+ super.initState();
+ WidgetsBinding.instance.addObserver(this); // 👀 pantau lifecycle app
+
+ }
+
+ @override
+ void dispose() {
+ WidgetsBinding.instance.removeObserver(this);
+ // _controller.dispose();
+ super.dispose();
+ }
+
+ // 🔔 Dipanggil saat app pause/resume/close
+ @override
+ void didChangeAppLifecycleState(AppLifecycleState state) async {
+ if (state == AppLifecycleState.detached || state == AppLifecycleState.paused) {
+ // Tutup bubble saat app ditutup atau masuk background
+ await BubbleService().hide();
+ }
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ return Scaffold(
+ backgroundColor: Colors.transparent,
+ body: Center(
+ child: AnimatedSwitcher(
+ duration: const Duration(milliseconds: 300),
+ transitionBuilder: (child, animation) => ScaleTransition(
+ scale: animation,
+ child: child,
+ ),
+ child: _showInput
+ ? _buildInputBox(context)
+ : Stack(
+ alignment: Alignment.topRight, // tombol X di pojok kanan atas
+ children: [
+ GestureDetector(
+ key: const ValueKey('bubble'),
+ onTap: _expandToInput,
+ child: const CircleAvatar(
+ radius: 30,
+ backgroundColor: Colors.white,
+ child: Icon(Icons.book_rounded,
+ color: Colors.black, size: 32),
+ ),
+ ),
+ // Tombol Close
+ Positioned(
+ right: -2, // sedikit keluar dari bubble
+ top: -5,
+ child: GestureDetector(
+ onTap: () async {
+ await BubbleService().hide(); // close bubble
+ },
+ child: Container(
+ decoration: BoxDecoration(
+ color: Colors.red,
+ shape: BoxShape.rectangle,
+ ),
+ child: const Icon(
+ Icons.close,
+ size: 18,
+ color: Colors.white,
+ ),
+ ),
+ ),
+ ),
+ ],
+ ),
+ ),
+ ),
+ );
+}
+
+
+ Widget _buildInputBox(BuildContext context) {
+ return GestureDetector(
+ behavior: HitTestBehavior.deferToChild,
+ onTapDown: (_) => FocusScope.of(context).unfocus(),
+ child: Container(
+ key: const ValueKey('inputBox'),
+ width: 340,
+ padding: const EdgeInsets.all(20),
+ decoration: BoxDecoration(
+ color: Colors.white,
+ borderRadius: BorderRadius.circular(24),
+ boxShadow: const [
+ BoxShadow(
+ color: Colors.black26,
+ blurRadius: 15,
+ offset: Offset(0, 6),
+ ),
+ ],
+ ),
+ child: Column(
+ mainAxisSize: MainAxisSize.min,
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ const Text(
+ "Masukkan Data Pengiriman",
+ style: TextStyle(
+ fontSize: 14,
+ fontWeight: FontWeight.w600,
+ color: Colors.black87,
+ ),
+ ),
+ const SizedBox(height: 10),
+
+ Listener(
+ onPointerDown: (_) {},
+ child: TextField(
+ controller: _controller, // <-- ini yang menghubungkan TextField dengan controller
+ maxLines: 4,
+ keyboardType: TextInputType.multiline,
+ decoration: InputDecoration(
+ hintText: "Data Pengiriman...",
+ hintStyle: const TextStyle(color: Colors.grey),
+ filled: true,
+ fillColor: Colors.grey.shade100,
+ contentPadding: const EdgeInsets.symmetric(horizontal: 14, vertical: 12),
+ border: OutlineInputBorder(
+ borderRadius: BorderRadius.circular(14),
+ borderSide: BorderSide(color: Colors.grey.shade400),
+ ),
+ focusedBorder: OutlineInputBorder(
+ borderRadius: BorderRadius.circular(14),
+ borderSide: const BorderSide(color: Colors.blue, width: 1.8),
+ ),
+ ),
+)
+
+ ),
+
+ const SizedBox(height: 10),
+
+ Row(
+ mainAxisAlignment: MainAxisAlignment.end,
+ children: [
+ TextButton(
+ onPressed: () async {
+ final clipboardData = await Clipboard.getData(Clipboard.kTextPlain);
+ if (clipboardData?.text != null && clipboardData!.text!.isNotEmpty) {
+ setState(() {
+ _controller.text = clipboardData.text!;
+ _controller.selection = TextSelection.fromPosition(
+ TextPosition(offset: _controller.text.length),
+ );
+ });
+ } else {
+ ScaffoldMessenger.of(context).showSnackBar(
+ const SnackBar(content: Text("Clipboard kosong")),
+ );
+ }
+ },
+ style: TextButton.styleFrom(
+ foregroundColor: Colors.green,
+ textStyle: const TextStyle(fontSize: 12),
+ ),
+ child: const Text("Tempel"),
+),
+
+
+
+ // 🔘 Tombol Hapus
+ TextButton(
+ onPressed: () {
+ _controller.clear(); // menghapus isi TextField
+ },
+ style: TextButton.styleFrom(
+ foregroundColor: Colors.redAccent,
+ textStyle: const TextStyle(fontSize: 12),
+ ),
+ child: const Text("Hapus"),
+ ),
+ const SizedBox(width: 8),
+
+ TextButton(
+ onPressed: _collapseToBubble,
+ style: TextButton.styleFrom(
+ foregroundColor: const Color.fromARGB(255, 57, 57, 57),
+ textStyle: const TextStyle(fontSize: 12),
+ ),
+ child: const Text("Batal"),
+ ),
+ const SizedBox(width: 8),
+
+ ElevatedButton(
+ onPressed: () {
+ debugPrint("Input terkirim: ${_controller.text}");
+ _collapseToBubble();
+ },
+ style: ElevatedButton.styleFrom(
+ backgroundColor: Colors.blueAccent,
+ padding:
+ const EdgeInsets.symmetric(horizontal: 22, vertical: 12),
+ shape: RoundedRectangleBorder(
+ borderRadius: BorderRadius.circular(14),
+ ),
+ ),
+ child: const Text(
+ "Simpan",
+ style: TextStyle(
+ fontSize: 12,
+ fontWeight: FontWeight.w600,
+ color: Colors.white,
+ ),
+ ),
+ ),
+ ],
+ ),
+ ],
+ ),
+ ),
+ );
+}
+
+
+
+ // ✅ Saat bubble diklik, ubah tampilan jadi kotak input besar
+ Future _expandToInput() async {
+ await BubbleService().resize(360, 260, animated: true);
+ await Future.delayed(const Duration(milliseconds: 200)); // biar sempat apply
+
+ setState(() => _showInput = true);
+ }
+
+
+ // ✅ Saat menekan "Batal" atau "Kirim", kembalikan ke bubble kecil
+ Future _collapseToBubble() async {
+ setState(() => _showInput = false);
+ await BubbleService().resize(100, 100, animated: true);
+ }
+}
+
+
+
+
+
+void main() async {
+ WidgetsFlutterBinding.ensureInitialized();
+ await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform);
+
+ WidgetsFlutterBinding.ensureInitialized(); // 🟢 tambahkan ini
+
+ // 🟢 inisialisasi locale "id_ID" untuk format tanggal Indonesia
+ await initializeDateFormatting('id_ID', null);
+ Get.put(InternetController());
+ runApp(const MyApp());
+
+ AppLifecycleListener(
+ onDetach: () async {
+ await BubbleService().hide();
+ },
+ );
+}
+
+
+
+class MyApp extends StatefulWidget {
+ const MyApp({super.key});
+
+ @override
+ State createState() => _MyAppState();
+}
+
+class _MyAppState extends State with WidgetsBindingObserver {
+ @override
+ void initState() {
+ super.initState();
+ WidgetsBinding.instance.addObserver(this);
+ }
+
+ @override
+ void dispose() {
+ WidgetsBinding.instance.removeObserver(this);
+ super.dispose();
+ }
+
+ @override
+ void didChangeAppLifecycleState(AppLifecycleState state) async {
+ if (state == AppLifecycleState.detached) {
+ await BubbleService().hide(); // bubble hilang hanya saat app ditutup
+ }
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ return GetMaterialApp(
+ debugShowCheckedModeBanner: false,
+ title: 'Praresi',
+ initialRoute: AppRoutes.splash,
+ getPages: AppPages.routes,
+ );
+ }
+}
+
+
diff --git a/praresi/lib/overlays/bubble_entry.dart b/praresi/lib/overlays/bubble_entry.dart
new file mode 100644
index 0000000..4f9299a
--- /dev/null
+++ b/praresi/lib/overlays/bubble_entry.dart
@@ -0,0 +1,98 @@
+import 'package:flutter/material.dart';
+// import 'package:flutter_overlay_window/flutter_overlay_window.dart';
+
+@pragma("vm:entry-point")
+void overlayMain() {
+ runApp(const MaterialApp(
+ debugShowCheckedModeBanner: false,
+ home: OverlayBubble(),
+ ));
+}
+
+class OverlayBubble extends StatefulWidget {
+ const OverlayBubble({super.key});
+
+ @override
+ State createState() => _OverlayBubbleState();
+}
+
+class _OverlayBubbleState extends State {
+ bool expanded = false;
+ final TextEditingController controller = TextEditingController();
+
+ @override
+ Widget build(BuildContext context) {
+ return Material(
+ color: Colors.transparent,
+ child: Stack(
+ children: [
+ if (expanded)
+ Positioned(
+ right: 80,
+ bottom: 50,
+ child: Container(
+ width: 250,
+ padding: const EdgeInsets.all(12),
+ decoration: BoxDecoration(
+ color: Colors.white,
+ borderRadius: BorderRadius.circular(16),
+ boxShadow: const [BoxShadow(color: Colors.black26, blurRadius: 8)],
+ ),
+ child: Column(
+ mainAxisSize: MainAxisSize.min,
+ children: [
+ const Text(
+ 'Salin / Tulis Alamat',
+ style: TextStyle(fontWeight: FontWeight.bold),
+ ),
+ const SizedBox(height: 8),
+ TextField(
+ controller: controller,
+ maxLines: 3,
+ decoration: const InputDecoration(
+ hintText: 'Masukkan alamat di sini...',
+ border: OutlineInputBorder(),
+ ),
+ ),
+ const SizedBox(height: 8),
+ Row(
+ mainAxisAlignment: MainAxisAlignment.end,
+ children: [
+ TextButton(
+ onPressed: () => setState(() => expanded = false),
+ child: const Text('Tutup')),
+ ElevatedButton(
+ onPressed: () async {
+ // await FlutterOverlayWindow.shareData(controller.text);
+ controller.clear();
+ },
+ child: const Text('Kirim'),
+ ),
+ ],
+ )
+ ],
+ ),
+ ),
+ ),
+ Positioned(
+ right: 10,
+ bottom: 10,
+ child: GestureDetector(
+ onTap: () => setState(() => expanded = !expanded),
+ child: Container(
+ width: 70,
+ height: 70,
+ decoration: const BoxDecoration(
+ color: Colors.blueAccent,
+ shape: BoxShape.circle,
+ boxShadow: [BoxShadow(color: Colors.black26, blurRadius: 8)],
+ ),
+ child: const Icon(Icons.message, color: Colors.white, size: 32),
+ ),
+ ),
+ )
+ ],
+ ),
+ );
+ }
+}
\ No newline at end of file
diff --git a/praresi/lib/overlays/bubble_overlay.dart b/praresi/lib/overlays/bubble_overlay.dart
new file mode 100644
index 0000000..455ed3b
--- /dev/null
+++ b/praresi/lib/overlays/bubble_overlay.dart
@@ -0,0 +1,51 @@
+// // lib/overlays/bubble_overlay.dart
+// import 'package:flutter/material.dart';
+// import 'package:flutter_overlay_window_sdk34/flutter_overlay_window_sdk34.dart';
+
+// @pragma('vm:entry-point')
+// void overlayMain() {
+// runApp(const BubbleOverlay());
+// }
+
+// class BubbleOverlay extends StatelessWidget {
+// const BubbleOverlay({super.key});
+
+// @override
+// Widget build(BuildContext context) {
+// return MaterialApp(
+// debugShowCheckedModeBanner: false,
+// home: Scaffold(
+// backgroundColor: Colors.transparent,
+// body: SafeArea(
+// child: Align(
+// alignment: Alignment.bottomRight,
+// child: GestureDetector(
+// onTap: () async {
+// // Tutup bubble & buka app utama
+// await FlutterOverlayWindow.closeOverlay();
+
+// },
+// child: Container(
+// margin: const EdgeInsets.all(12),
+// decoration: const BoxDecoration(
+// color: Colors.blueAccent,
+// shape: BoxShape.circle,
+// boxShadow: [
+// BoxShadow(
+// color: Colors.black26,
+// blurRadius: 6,
+// offset: Offset(2, 3),
+// ),
+// ],
+// ),
+// width: 70,
+// height: 70,
+// child: const Icon(Icons.account_balance_wallet_rounded, color: Colors.black, size: 40),
+// ),
+// ),
+// ),
+// ),
+// ),
+// );
+// }
+// }
diff --git a/praresi/lib/presentation/controllers/analisis_controller.dart b/praresi/lib/presentation/controllers/analisis_controller.dart
new file mode 100644
index 0000000..2f1dd4d
--- /dev/null
+++ b/praresi/lib/presentation/controllers/analisis_controller.dart
@@ -0,0 +1,133 @@
+import 'dart:async';
+import 'package:cloud_firestore/cloud_firestore.dart';
+import 'package:get/get.dart';
+import 'package:firebase_auth/firebase_auth.dart';
+import 'package:intl/intl.dart';
+
+class AnalisisController extends GetxController {
+ final FirebaseFirestore _firestore = FirebaseFirestore.instance;
+ final FirebaseAuth _auth = FirebaseAuth.instance;
+
+ var monthlyData =