new project stable version
49
.gitignore
vendored
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
# Miscellaneous
|
||||||
|
*.class
|
||||||
|
*.log
|
||||||
|
*.pyc
|
||||||
|
*.swp
|
||||||
|
.DS_Store
|
||||||
|
.atom/
|
||||||
|
.build/
|
||||||
|
.buildlog/
|
||||||
|
.history
|
||||||
|
.svn/
|
||||||
|
.swiftpm/
|
||||||
|
migrate_working_dir/
|
||||||
|
|
||||||
|
.dart_tool
|
||||||
|
build
|
||||||
|
|
||||||
|
|
||||||
|
# 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
|
||||||
33
.metadata
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
# 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: "edada7c56edf4a183c1735310e123c7f923584f1"
|
||||||
|
channel: "stable"
|
||||||
|
|
||||||
|
project_type: app
|
||||||
|
|
||||||
|
# Tracks metadata for the flutter migrate command
|
||||||
|
migration:
|
||||||
|
platforms:
|
||||||
|
- platform: root
|
||||||
|
create_revision: edada7c56edf4a183c1735310e123c7f923584f1
|
||||||
|
base_revision: edada7c56edf4a183c1735310e123c7f923584f1
|
||||||
|
- platform: android
|
||||||
|
create_revision: edada7c56edf4a183c1735310e123c7f923584f1
|
||||||
|
base_revision: edada7c56edf4a183c1735310e123c7f923584f1
|
||||||
|
- platform: ios
|
||||||
|
create_revision: edada7c56edf4a183c1735310e123c7f923584f1
|
||||||
|
base_revision: edada7c56edf4a183c1735310e123c7f923584f1
|
||||||
|
|
||||||
|
# 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'
|
||||||
16
README.md
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# be_happy
|
||||||
|
|
||||||
|
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.
|
||||||
28
analysis_options.yaml
Normal file
@@ -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
|
||||||
14
android/.gitignore
vendored
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
gradle-wrapper.jar
|
||||||
|
/.gradle
|
||||||
|
/captures/
|
||||||
|
/gradlew
|
||||||
|
/gradlew.bat
|
||||||
|
/local.properties
|
||||||
|
GeneratedPluginRegistrant.java
|
||||||
|
.cxx/
|
||||||
|
|
||||||
|
# Remember to never publicly share your keystore.
|
||||||
|
# See https://flutter.dev/to/reference-keystore
|
||||||
|
key.properties
|
||||||
|
**/*.keystore
|
||||||
|
**/*.jks
|
||||||
63
android/app/build.gradle.kts
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
import java.util.Properties
|
||||||
|
import java.io.FileInputStream
|
||||||
|
|
||||||
|
val keystoreProperties = Properties()
|
||||||
|
val keystorePropertiesFile = rootProject.file("key.properties")
|
||||||
|
if (keystorePropertiesFile.exists()) {
|
||||||
|
keystoreProperties.load(FileInputStream(keystorePropertiesFile))
|
||||||
|
}
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id("com.android.application")
|
||||||
|
id("kotlin-android")
|
||||||
|
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
||||||
|
id("dev.flutter.flutter-gradle-plugin")
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
namespace = "com.sparkit.be_happy"
|
||||||
|
compileSdk = flutter.compileSdkVersion
|
||||||
|
ndkVersion = "27.0.12077973"
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
create("release") {
|
||||||
|
keyAlias = keystoreProperties["keyAlias"] as String?
|
||||||
|
keyPassword = keystoreProperties["keyPassword"] as String?
|
||||||
|
storeFile = keystoreProperties["storeFile"]?.let { file(it) }
|
||||||
|
storePassword = keystoreProperties["storePassword"] as String?
|
||||||
|
}
|
||||||
|
}
|
||||||
|
buildTypes {
|
||||||
|
getByName("release") {
|
||||||
|
signingConfig = signingConfigs.getByName("release")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_11
|
||||||
|
targetCompatibility = JavaVersion.VERSION_11
|
||||||
|
}
|
||||||
|
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = JavaVersion.VERSION_11.toString()
|
||||||
|
}
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||||
|
applicationId = "com.sparkit.be_happy"
|
||||||
|
// You can update the following values to match your application needs.
|
||||||
|
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||||
|
minSdk = 26
|
||||||
|
targetSdk = flutter.targetSdkVersion
|
||||||
|
versionCode = flutter.versionCode
|
||||||
|
versionName = flutter.versionName
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation ("com.yandex.android:maps.mobile:4.5.1-full")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flutter {
|
||||||
|
source = "../.."
|
||||||
|
}
|
||||||
BIN
android/app/sparkit-key
Normal file
7
android/app/src/debug/AndroidManifest.xml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<!-- The INTERNET permission is required for development. Specifically,
|
||||||
|
the Flutter tool needs it to communicate with the running application
|
||||||
|
to allow setting breakpoints, to provide hot reload, etc.
|
||||||
|
-->
|
||||||
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
|
</manifest>
|
||||||
70
android/app/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<uses-permission android:name="android.permission.CAMERA"/>
|
||||||
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||||
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
||||||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||||
|
<queries>
|
||||||
|
<intent>
|
||||||
|
<action android:name="android.intent.action.VIEW" />
|
||||||
|
<data android:scheme="https" />
|
||||||
|
</intent>
|
||||||
|
<intent>
|
||||||
|
<action android:name="android.intent.action.DIAL" />
|
||||||
|
<data android:scheme="tel" />
|
||||||
|
</intent>
|
||||||
|
<package android:name="com.whatsapp" />
|
||||||
|
<package android:name="com.viber.voip" />
|
||||||
|
<package android:name="org.telegram.messenger" />
|
||||||
|
</queries>
|
||||||
|
<application
|
||||||
|
android:label="Be Happy"
|
||||||
|
android:name="${applicationName}"
|
||||||
|
android:icon="@mipmap/ic_launcher">
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="com.yandex.runtime.API_KEY"
|
||||||
|
android:value="a0ef1404-2650-4f28-9891-c965ecc09174" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name=".MainActivity"
|
||||||
|
android:exported="true"
|
||||||
|
android:launchMode="singleTop"
|
||||||
|
android:taskAffinity=""
|
||||||
|
android:theme="@style/LaunchTheme"
|
||||||
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
||||||
|
android:hardwareAccelerated="true"
|
||||||
|
android:windowSoftInputMode="adjustResize">
|
||||||
|
<!-- Specifies an Android theme to apply to this Activity as soon as
|
||||||
|
the Android process has started. This theme is visible to the user
|
||||||
|
while the Flutter UI initializes. After that, this theme continues
|
||||||
|
to determine the Window background behind the Flutter UI. -->
|
||||||
|
<meta-data
|
||||||
|
android:name="io.flutter.embedding.android.NormalTheme"
|
||||||
|
android:resource="@style/NormalTheme"
|
||||||
|
|
||||||
|
/>
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MAIN"/>
|
||||||
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
<!-- Don't delete the meta-data below.
|
||||||
|
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
||||||
|
<meta-data
|
||||||
|
android:name="flutterEmbedding"
|
||||||
|
android:value="2" />
|
||||||
|
</application>
|
||||||
|
<!-- Required to query activities that can process text, see:
|
||||||
|
https://developer.android.com/training/package-visibility and
|
||||||
|
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
|
||||||
|
|
||||||
|
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
|
||||||
|
<queries>
|
||||||
|
<intent>
|
||||||
|
<action android:name="android.intent.action.PROCESS_TEXT"/>
|
||||||
|
<data android:mimeType="text/plain"/>
|
||||||
|
</intent>
|
||||||
|
</queries>
|
||||||
|
</manifest>
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
package com.sparkit.be_happy
|
||||||
|
|
||||||
|
import android.os.Bundle
|
||||||
|
import com.yandex.mapkit.MapKitFactory
|
||||||
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
|
|
||||||
|
class MainActivity : FlutterActivity() {
|
||||||
|
|
||||||
|
override protected fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
MapKitFactory.setApiKey("a0ef1404-2650-4f28-9891-c965ecc09174")
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
}
|
||||||
|
}
|
||||||
12
android/app/src/main/res/drawable-v21/launch_background.xml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Modify this file to customize your launch splash screen -->
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:drawable="?android:colorBackground" />
|
||||||
|
|
||||||
|
<!-- You can insert your own image assets here -->
|
||||||
|
<!-- <item>
|
||||||
|
<bitmap
|
||||||
|
android:gravity="center"
|
||||||
|
android:src="@mipmap/launch_image" />
|
||||||
|
</item> -->
|
||||||
|
</layer-list>
|
||||||
12
android/app/src/main/res/drawable/launch_background.xml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Modify this file to customize your launch splash screen -->
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:drawable="@android:color/white" />
|
||||||
|
|
||||||
|
<!-- You can insert your own image assets here -->
|
||||||
|
<!-- <item>
|
||||||
|
<bitmap
|
||||||
|
android:gravity="center"
|
||||||
|
android:src="@mipmap/launch_image" />
|
||||||
|
</item> -->
|
||||||
|
</layer-list>
|
||||||
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 544 B |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 442 B |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 721 B |
BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
18
android/app/src/main/res/values-night/styles.xml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
||||||
|
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
|
the Flutter engine draws its first frame -->
|
||||||
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
|
</style>
|
||||||
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
|
This theme determines the color of the Android Window while your
|
||||||
|
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||||
|
running.
|
||||||
|
|
||||||
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
|
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
|
</style>
|
||||||
|
</resources>
|
||||||
18
android/app/src/main/res/values/styles.xml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||||
|
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
|
the Flutter engine draws its first frame -->
|
||||||
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
|
</style>
|
||||||
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
|
This theme determines the color of the Android Window while your
|
||||||
|
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||||
|
running.
|
||||||
|
|
||||||
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
|
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
|
</style>
|
||||||
|
</resources>
|
||||||
7
android/app/src/profile/AndroidManifest.xml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<!-- The INTERNET permission is required for development. Specifically,
|
||||||
|
the Flutter tool needs it to communicate with the running application
|
||||||
|
to allow setting breakpoints, to provide hot reload, etc.
|
||||||
|
-->
|
||||||
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
|
</manifest>
|
||||||
21
android/build.gradle.kts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
allprojects {
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get()
|
||||||
|
rootProject.layout.buildDirectory.value(newBuildDir)
|
||||||
|
|
||||||
|
subprojects {
|
||||||
|
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
|
||||||
|
project.layout.buildDirectory.value(newSubprojectBuildDir)
|
||||||
|
}
|
||||||
|
subprojects {
|
||||||
|
project.evaluationDependsOn(":app")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.register<Delete>("clean") {
|
||||||
|
delete(rootProject.layout.buildDirectory)
|
||||||
|
}
|
||||||
3
android/gradle.properties
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
|
||||||
|
android.useAndroidX=true
|
||||||
|
android.enableJetifier=true
|
||||||
5
android/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
@@ -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-8.12-all.zip
|
||||||
25
android/settings.gradle.kts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
pluginManagement {
|
||||||
|
val flutterSdkPath = run {
|
||||||
|
val properties = java.util.Properties()
|
||||||
|
file("local.properties").inputStream().use { properties.load(it) }
|
||||||
|
val flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||||
|
require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
|
||||||
|
flutterSdkPath
|
||||||
|
}
|
||||||
|
|
||||||
|
includeBuild("$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 "8.7.3" apply false
|
||||||
|
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
|
||||||
|
}
|
||||||
|
|
||||||
|
include(":app")
|
||||||
BIN
assets/ban.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
assets/error_promo.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
assets/first-logo.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
assets/fonts/Roboto_Condensed-Bold.ttf
Normal file
BIN
assets/fonts/Roboto_Condensed-Light.ttf
Normal file
BIN
assets/fonts/Roboto_Condensed-Medium.ttf
Normal file
BIN
assets/fonts/Roboto_Condensed-Regular.ttf
Normal file
BIN
assets/history.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
assets/icons/Vector (1).png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/icons/Vector.png
Normal file
|
After Width: | Height: | Size: 528 B |
BIN
assets/icons/ava.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
assets/icons/belcard.png
Normal file
|
After Width: | Height: | Size: 3.2 MiB |
BIN
assets/icons/bolt.png
Normal file
|
After Width: | Height: | Size: 529 B |
BIN
assets/icons/byn.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
assets/icons/call.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
assets/icons/card-screen.png
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
assets/icons/clichnik.png
Normal file
|
After Width: | Height: | Size: 664 KiB |
BIN
assets/icons/creditcard_icon.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
assets/icons/distance_icon.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
assets/icons/doc.png
Normal file
|
After Width: | Height: | Size: 295 B |
BIN
assets/icons/doc_icon.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 278 KiB |
BIN
assets/icons/e6a5dcb6a3e2ec2362c25ea49509ab10d2312b19.png
Normal file
|
After Width: | Height: | Size: 255 KiB |
BIN
assets/icons/edit.png
Normal file
|
After Width: | Height: | Size: 428 B |
BIN
assets/icons/flashlight.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/icons/headphones_icon.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
assets/icons/info_icon.png
Normal file
|
After Width: | Height: | Size: 795 B |
BIN
assets/icons/list_star_icon.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
assets/icons/location.png
Normal file
|
After Width: | Height: | Size: 547 B |
BIN
assets/icons/lock.png
Normal file
|
After Width: | Height: | Size: 488 B |
BIN
assets/icons/logout_icon.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
assets/icons/magazine_icon.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
assets/icons/mastercard.png
Normal file
|
After Width: | Height: | Size: 276 KiB |
BIN
assets/icons/money_icon.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
assets/icons/news_icon.png
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
assets/icons/person.png
Normal file
|
After Width: | Height: | Size: 563 B |
BIN
assets/icons/person_icon.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
assets/icons/plans_icon.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
assets/icons/points_icon.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/icons/promo_icon.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/icons/qr_icon.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
assets/icons/scooter_icon.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
assets/icons/scooter_placemark.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/icons/scooter_placemark_fill.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
assets/icons/speed.png
Normal file
|
After Width: | Height: | Size: 429 B |
BIN
assets/icons/telegram.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
assets/icons/time.png
Normal file
|
After Width: | Height: | Size: 780 B |
BIN
assets/icons/viber.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
assets/icons/visa.png
Normal file
|
After Width: | Height: | Size: 290 KiB |
BIN
assets/icons/whatsapp.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
assets/logo_color.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/logo_outline.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
assets/main-logo.png
Normal file
|
After Width: | Height: | Size: 246 KiB |
BIN
assets/news_empty.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
assets/onboard_1.jpg
Normal file
|
After Width: | Height: | Size: 1.8 MiB |
BIN
assets/onboard_2.jpg
Normal file
|
After Width: | Height: | Size: 452 KiB |
BIN
assets/onboard_3.png
Normal file
|
After Width: | Height: | Size: 502 KiB |
BIN
assets/onboard_4.jpg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
assets/onboard_5.jpg
Normal file
|
After Width: | Height: | Size: 160 KiB |
BIN
assets/onboard_6.jpg
Normal file
|
After Width: | Height: | Size: 375 KiB |
BIN
assets/onboard_7.png
Normal file
|
After Width: | Height: | Size: 391 KiB |
BIN
assets/promo_bottom.png
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
assets/qr_phone_img.png
Normal file
|
After Width: | Height: | Size: 662 KiB |
BIN
assets/second-logo.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
assets/support_bottom.jpg
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
assets/support_bottom.png
Normal file
|
After Width: | Height: | Size: 297 KiB |
237
assets/support_bottom.svg
Normal file
@@ -0,0 +1,237 @@
|
|||||||
|
<svg width="272" height="198" viewBox="0 0 272 198" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M86.9458 169.19C84.6971 169.19 82.5499 168.73 80.9476 167.79L2.44141 121.761C0.867247 120.839 0 119.553 0 118.144C0 116.452 1.24586 114.752 3.41865 113.478L153.144 25.6898C157.214 23.3031 163.4 23.045 166.932 25.1165L245.439 71.146C247.013 72.0691 247.88 73.3534 247.88 74.7632C247.88 76.4545 246.634 78.1553 244.461 79.4292L94.7356 167.216C92.5117 168.52 89.655 169.19 86.9458 169.19ZM81.1164 167.492C84.5556 169.508 90.5887 169.253 94.5668 166.919L244.292 79.1313C246.358 77.9215 247.542 76.3289 247.542 74.7632C247.542 73.4824 246.736 72.3029 245.27 71.4439L166.764 25.4144C163.325 23.4001 157.291 23.6555 153.313 25.9877L3.58835 113.775C1.52301 114.985 0.338542 116.577 0.338542 118.143C0.338542 119.424 1.14525 120.603 2.61111 121.462L81.1164 167.492Z" fill="#42E8E0"/>
|
||||||
|
<path d="M247.712 53.4998L236.435 55.4717L166.85 14.672C163.359 12.6248 157.262 12.882 153.231 15.2453L20.1062 93.2993L0.171626 96.785L0.169922 103.962L0.179303 103.961C0.169923 105.269 0.935693 106.521 2.52691 107.453L81.0322 153.483C84.5234 155.53 90.6205 155.273 94.6514 152.909L244.377 65.1215C246.547 63.8494 247.665 62.2265 247.7 60.6789L247.711 60.6772V53.4998H247.712Z" fill="url(#paint0_linear_1173_5301)"/>
|
||||||
|
<path d="M81.0324 146.258L2.52711 100.228C-0.964028 98.1812 -0.525729 94.6064 3.50519 92.2431L153.23 4.45523C157.261 2.09192 163.359 1.83473 166.849 3.88194L245.355 49.9114C248.846 51.9586 248.407 55.5335 244.376 57.8968L94.6516 145.685C90.6207 148.048 84.5236 148.304 81.0324 146.258Z" fill="#24126A"/>
|
||||||
|
<path d="M244.376 57.8967L94.6507 145.685C90.6198 148.048 84.5218 148.305 81.0315 146.258L2.5262 100.228C1.12599 99.4074 0.368746 98.3396 0.210988 97.2043C-0.00560889 98.6782 0.748227 100.118 2.5262 101.16L81.0315 147.19C84.5227 149.237 90.6198 148.98 94.6507 146.616L244.376 58.8285C246.79 57.4126 247.905 55.5637 247.67 53.8672C247.462 55.2857 246.355 56.7371 244.376 57.8967Z" fill="white"/>
|
||||||
|
<path opacity="0.51" d="M81.1867 144.474L5.47921 100.072C2.10149 98.0917 2.52446 94.632 6.42576 92.3449L153.374 6.20849C157.274 3.92139 163.175 3.67285 166.553 5.65339L242.261 50.0548C245.638 52.0353 245.215 55.495 241.314 57.7821L94.3659 143.918C90.4654 146.206 84.5653 146.454 81.1867 144.474Z" fill="#453C9E"/>
|
||||||
|
<path opacity="0.8" d="M86.9081 144.07C84.7174 144.07 82.6256 143.622 81.0642 142.707L5.35677 98.3058C3.80734 97.3974 2.95459 96.1287 2.95459 94.7353C2.95459 93.0683 4.17487 91.3978 6.30332 90.149L153.252 4.01258C157.213 1.68998 163.234 1.44057 166.675 3.45748L242.382 47.8589C243.931 48.7673 244.784 50.036 244.784 51.4294C244.784 53.0956 243.564 54.7678 241.436 56.0157L94.4873 142.152C92.323 143.421 89.5448 144.07 86.9081 144.07ZM81.3081 142.277C84.6134 144.216 90.4155 143.966 94.2434 141.722L241.192 55.5853C243.165 54.4283 244.297 52.9128 244.297 51.4285C244.297 50.2196 243.53 49.1033 242.138 48.2876L166.431 3.88615C163.126 1.94718 157.323 2.19659 153.495 4.44125L6.5472 90.5777C4.5748 91.7346 3.44235 93.2493 3.44235 94.7345C3.44235 95.9434 4.20897 97.0597 5.60065 97.8754L81.3081 142.277Z" fill="url(#paint1_linear_1173_5301)"/>
|
||||||
|
<path opacity="0.5" d="M81.1867 142.492L5.47921 98.0908C2.10149 96.1102 2.52446 92.6506 6.42576 90.3635L153.374 4.22704C157.274 1.93994 163.175 1.6914 166.553 3.67194L242.261 48.0734C245.638 50.0539 245.215 53.5135 241.314 55.8006L94.3659 141.937C90.4654 144.224 84.5653 144.473 81.1867 142.492Z" fill="url(#paint2_radial_1173_5301)"/>
|
||||||
|
<path opacity="0.4" d="M226.092 55.4437C224.936 56.1209 223.063 56.1209 221.907 55.4437C220.752 54.7665 220.752 53.6675 221.907 52.9903C223.063 52.3131 224.936 52.3131 226.092 52.9903C227.247 53.6675 227.247 54.7665 226.092 55.4437Z" fill="#24126A"/>
|
||||||
|
<path opacity="0.4" d="M210.118 43.6242L218.309 48.427C219.31 49.0141 219.184 50.0386 218.029 50.7167C216.873 51.3939 215.125 51.4675 214.124 50.8812L205.931 46.0784C204.93 45.4913 205.057 44.4668 206.212 43.7896C207.368 43.1115 209.116 43.0379 210.118 43.6242Z" fill="#24126A"/>
|
||||||
|
<path opacity="0.4" d="M163.387 14.8164L171.579 19.6192C172.579 20.2055 172.454 21.2308 171.299 21.908C170.143 22.5852 168.395 22.6589 167.394 22.0726L159.202 17.2698C158.201 16.6826 158.328 15.6581 159.483 14.9801C160.638 14.3028 162.386 14.2292 163.387 14.8164Z" fill="#24126A"/>
|
||||||
|
<path d="M226.092 52.4622C224.936 53.1395 223.063 53.1395 221.907 52.4622C220.752 51.785 220.752 50.6861 221.907 50.0089C223.063 49.3317 224.936 49.3317 226.092 50.0089C227.247 50.6861 227.247 51.7842 226.092 52.4622Z" fill="#42E8E0"/>
|
||||||
|
<path d="M210.118 40.6418L218.309 45.4446C219.31 46.0317 219.184 47.0562 218.029 47.7343C216.873 48.4115 215.125 48.4851 214.124 47.8988L205.931 43.096C204.93 42.5088 205.057 41.4844 206.212 40.8072C207.368 40.1291 209.116 40.0555 210.118 40.6418Z" fill="#42E8E0"/>
|
||||||
|
<path d="M163.387 11.8339L171.579 16.6367C172.579 17.2239 172.454 18.2483 171.299 18.9264C170.143 19.6036 168.395 19.6772 167.394 19.0909L159.202 14.2881C158.201 13.701 158.328 12.6765 159.483 11.9984C160.638 11.3203 162.386 11.2467 163.387 11.8339Z" fill="#42E8E0"/>
|
||||||
|
<g opacity="0.3">
|
||||||
|
<path d="M272 157.32V153.439L270.943 152.842C270.644 154.674 268.522 155.881 266.747 156.131L254.66 163.31L249.385 165.244L232.548 156.421L232.937 156.193C231.497 155.51 230.723 153.949 229.945 152.524L228.811 153.211L228.138 153.403V157.384C228.138 158.144 228.631 158.904 229.619 159.484L246.487 169.373C248.462 170.531 251.676 170.531 253.651 169.373L270.518 159.484C271.489 158.914 271.983 158.169 271.999 157.421C271.999 157.387 271.998 157.354 271.997 157.32H272Z" fill="url(#paint3_linear_1173_5301)"/>
|
||||||
|
<path opacity="0.3" d="M266.746 156.131L254.66 163.309L250.068 164.992V170.24C251.365 170.24 252.663 169.951 253.651 169.372L270.518 159.482C271.489 158.912 271.983 158.167 271.998 157.419C271.999 157.385 271.997 157.352 271.997 157.319L271.999 157.32V153.438L271.033 152.893H270.932C270.603 154.696 268.505 155.882 266.746 156.131Z" fill="#0F054C"/>
|
||||||
|
<path d="M246.488 165.428L229.619 155.538C227.644 154.38 227.644 152.496 229.619 151.338L246.487 141.448C248.462 140.291 251.675 140.291 253.651 141.448L270.519 151.338C272.494 152.496 272.494 154.38 270.519 155.538L253.651 165.428C251.676 166.586 248.462 166.586 246.488 165.428Z" fill="url(#paint4_linear_1173_5301)"/>
|
||||||
|
<g opacity="0.3">
|
||||||
|
<path d="M246.488 165.428L229.619 155.538C227.644 154.38 227.644 152.496 229.619 151.338L246.487 141.448C248.462 140.291 251.675 140.291 253.651 141.448L270.519 151.338C272.494 152.496 272.494 154.38 270.519 155.538L253.651 165.428C251.676 166.586 248.462 166.586 246.488 165.428Z" fill="#0F054C"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path d="M250.07 152.927C248.919 152.927 247.768 152.669 246.891 152.156L230.023 142.266C229.146 141.752 228.665 141.06 228.665 140.314C228.665 139.57 229.147 138.878 230.023 138.364L246.889 128.473C248.644 127.447 251.495 127.445 253.248 128.473L270.116 138.364C270.992 138.878 271.475 139.571 271.475 140.315C271.475 141.059 270.993 141.753 270.116 142.266L253.249 152.156C252.373 152.669 251.222 152.927 250.07 152.927ZM250.07 128C248.972 128 247.874 128.244 247.038 128.735L230.17 138.626C229.39 139.083 228.96 139.683 228.96 140.315C228.96 140.947 229.39 141.549 230.171 142.006L247.039 151.896C248.711 152.877 251.429 152.877 253.102 151.896L269.969 142.006C270.749 141.549 271.179 140.948 271.179 140.316C271.179 139.684 270.749 139.083 269.969 138.626L253.101 128.735C252.266 128.244 251.168 128 250.07 128Z" fill="#42E8E0"/>
|
||||||
|
<path opacity="0.4" d="M272 136.52V130.655L270.943 130.058C270.644 131.89 268.522 133.097 266.747 133.348L254.66 140.525L249.385 142.46L232.548 133.636L232.937 133.408C231.497 132.725 230.723 131.164 229.945 129.739L228.811 130.426L228.138 130.618V136.583C228.138 137.344 228.631 138.104 229.619 138.683L246.487 148.574C248.462 149.732 251.676 149.732 253.651 148.574L270.518 138.684C271.489 138.114 271.983 137.37 271.999 136.621C271.999 136.588 271.998 136.555 271.997 136.521L272 136.52Z" fill="#42E8E0"/>
|
||||||
|
<path d="M272 131.306V127.424L270.943 126.827C270.644 128.659 268.522 129.866 266.747 130.117L254.66 137.294L249.385 139.229L232.548 130.405L232.937 130.177C231.497 129.495 230.723 127.933 229.945 126.509L228.811 127.196L228.138 127.388V131.368C228.138 132.128 228.631 132.889 229.619 133.468L246.487 143.358C248.462 144.516 251.676 144.516 253.651 143.358L270.518 133.469C271.489 132.899 271.983 132.154 271.999 131.406C271.999 131.373 271.998 131.339 271.997 131.306H272Z" fill="url(#paint5_linear_1173_5301)"/>
|
||||||
|
<path opacity="0.3" d="M266.746 130.118L254.66 137.295L250.068 138.979V144.227C251.365 144.227 252.663 143.937 253.651 143.358L270.518 133.468C271.489 132.898 271.983 132.154 271.998 131.405C271.999 131.373 271.997 131.339 271.997 131.305L271.999 131.306V127.424L271.033 126.879H270.932C270.603 128.682 268.505 129.869 266.746 130.118Z" fill="#0F054C"/>
|
||||||
|
<path d="M246.488 139.415L229.619 129.526C227.644 128.368 227.644 126.483 229.619 125.325L246.487 115.436C248.462 114.278 251.675 114.278 253.651 115.436L270.519 125.326C272.494 126.484 272.494 128.369 270.519 129.526L253.651 139.416C251.676 140.573 248.462 140.573 246.488 139.415Z" fill="url(#paint6_linear_1173_5301)"/>
|
||||||
|
<path d="M270.519 129.524L253.652 139.414C251.677 140.572 248.463 140.572 246.488 139.414L229.62 129.524C228.737 129.007 228.25 128.344 228.156 127.666C228.04 128.505 228.527 129.368 229.62 130.008L246.488 139.898C248.463 141.056 251.677 141.056 253.652 139.898L270.519 130.009C271.611 129.368 272.098 128.506 271.982 127.667C271.889 128.344 271.402 129.007 270.519 129.524Z" fill="white"/>
|
||||||
|
<g opacity="0.3">
|
||||||
|
<path d="M196.899 180.4V176.519L195.842 175.922C195.543 177.754 193.42 178.961 191.645 179.211L179.559 186.39L174.284 188.324L157.447 179.501L157.836 179.273C156.396 178.59 155.622 177.029 154.844 175.604L153.71 176.291L153.037 176.483V180.464C153.037 181.224 153.53 181.984 154.518 182.564L171.386 192.453C173.361 193.611 176.575 193.611 178.55 192.453L195.417 182.564C196.388 181.994 196.882 181.249 196.898 180.501C196.899 180.467 196.898 180.434 196.897 180.4H196.899Z" fill="url(#paint7_linear_1173_5301)"/>
|
||||||
|
<path opacity="0.3" d="M191.646 179.212L179.559 186.39L174.968 188.073V193.321C176.265 193.321 177.563 193.032 178.551 192.453L195.418 182.563C196.389 181.993 196.883 181.248 196.899 180.5C196.9 180.466 196.898 180.434 196.897 180.4L196.9 180.401V176.519L195.934 175.974H195.833C195.502 177.777 193.404 178.963 191.646 179.212Z" fill="#0F054C"/>
|
||||||
|
<path d="M171.387 188.508L154.519 178.618C152.544 177.46 152.544 175.576 154.519 174.418L171.386 164.529C173.361 163.371 176.575 163.371 178.55 164.529L195.418 174.418C197.393 175.576 197.393 177.46 195.418 178.618L178.551 188.508C176.576 189.667 173.362 189.667 171.387 188.508Z" fill="url(#paint8_linear_1173_5301)"/>
|
||||||
|
<g opacity="0.3">
|
||||||
|
<path d="M171.387 188.508L154.519 178.618C152.544 177.46 152.544 175.576 154.519 174.418L171.386 164.529C173.361 163.371 176.575 163.371 178.55 164.529L195.418 174.418C197.393 175.576 197.393 177.46 195.418 178.618L178.551 188.508C176.576 189.667 173.362 189.667 171.387 188.508Z" fill="#0F054C"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path opacity="0.4" d="M174.97 191.669C164.683 191.669 154.397 189.373 146.565 184.781C138.949 180.316 134.755 174.37 134.755 168.039C134.755 161.709 138.949 155.764 146.564 151.299C162.226 142.117 187.711 142.115 203.373 151.299C210.989 155.764 215.183 161.71 215.183 168.042C215.183 174.372 210.989 180.317 203.374 184.781C195.543 189.372 185.257 191.669 174.97 191.669ZM174.969 144.707C164.736 144.707 154.502 146.992 146.712 151.559C139.193 155.968 135.051 161.82 135.051 168.038C135.051 174.258 139.192 180.111 146.713 184.52C162.295 193.656 187.647 193.654 203.226 184.52C210.745 180.111 214.887 174.259 214.887 168.041C214.887 161.821 210.746 155.968 203.226 151.559C195.435 146.992 185.202 144.707 174.969 144.707Z" fill="#42E8E0"/>
|
||||||
|
<path opacity="0.2" d="M174.97 198C161.915 198 148.863 195.088 138.924 189.26C129.267 183.598 123.949 176.062 123.949 168.038C123.949 160.015 129.266 152.478 138.922 146.817C158.798 135.163 191.138 135.164 211.013 146.818C220.67 152.48 225.988 160.016 225.988 168.039C225.988 176.063 220.67 183.599 211.015 189.26C201.078 195.087 188.022 198 174.97 198ZM174.967 138.374C161.967 138.374 148.967 141.275 139.07 147.079C129.509 152.684 124.245 160.127 124.245 168.039C124.245 175.951 129.51 183.394 139.071 189C158.866 200.606 191.073 200.607 210.867 189.001C220.427 183.395 225.692 175.952 225.692 168.04C225.692 160.128 220.426 152.684 210.866 147.079C200.969 141.275 187.968 138.374 174.967 138.374Z" fill="#42E8E0"/>
|
||||||
|
<path d="M174.97 186.68C166.863 186.68 158.756 184.87 152.584 181.252C146.577 177.73 143.269 173.038 143.268 168.04C143.268 163.043 146.577 158.351 152.583 154.828C164.926 147.592 185.01 147.591 197.353 154.828C203.361 158.35 206.67 163.042 206.67 168.04C206.67 173.038 203.362 177.729 197.354 181.252C191.183 184.87 183.076 186.68 174.97 186.68ZM174.969 149.697C166.916 149.697 158.862 151.494 152.731 155.089C146.819 158.555 143.564 163.154 143.564 168.04C143.564 172.927 146.82 177.527 152.732 180.992C164.994 188.183 184.946 188.183 197.208 180.992C203.12 177.527 206.375 172.926 206.375 168.041C206.375 163.154 203.119 158.555 197.207 155.089C191.075 151.494 183.021 149.697 174.969 149.697Z" fill="#42E8E0"/>
|
||||||
|
<path d="M174.969 174.121C173.817 174.121 172.666 173.864 171.791 173.351L154.922 163.46C154.047 162.946 153.564 162.254 153.564 161.509C153.564 160.764 154.046 160.071 154.922 159.558L171.79 149.668C173.543 148.642 176.394 148.642 178.148 149.668L195.016 159.558C195.892 160.072 196.374 160.764 196.374 161.51C196.374 162.254 195.892 162.946 195.016 163.46L178.149 173.35C177.272 173.864 176.12 174.121 174.969 174.121ZM171.937 173.091C173.609 174.071 176.329 174.07 178 173.09L194.868 163.2C195.649 162.743 196.078 162.143 196.078 161.511C196.078 160.878 195.649 160.277 194.867 159.819L178 149.93C176.328 148.948 173.609 148.948 171.937 149.93L155.07 159.819C154.29 160.277 153.86 160.878 153.86 161.51C153.86 162.142 154.29 162.743 155.07 163.2L171.937 173.091Z" fill="#42E8E0"/>
|
||||||
|
<path opacity="0.4" d="M196.899 157.713V151.847L195.842 151.25C195.543 153.082 193.42 154.289 191.645 154.539L179.559 161.717L174.284 163.651L157.447 154.828L157.836 154.6C156.396 153.918 155.622 152.355 154.844 150.932L153.71 151.618L153.037 151.811V157.776C153.037 158.536 153.53 159.296 154.518 159.876L171.386 169.765C173.361 170.923 176.575 170.923 178.55 169.765L195.417 159.876C196.388 159.306 196.882 158.561 196.898 157.813C196.899 157.779 196.898 157.746 196.897 157.712L196.899 157.713Z" fill="#42E8E0"/>
|
||||||
|
<path d="M196.899 152.5V148.618L195.842 148.022C195.543 149.853 193.42 151.061 191.645 151.311L179.559 158.488L174.284 160.423L157.447 151.599L157.836 151.371C156.396 150.689 155.622 149.128 154.844 147.703L153.71 148.39L153.037 148.582V152.562C153.037 153.323 153.53 154.083 154.518 154.662L171.386 164.552C173.361 165.71 176.575 165.71 178.55 164.552L195.417 154.662C196.388 154.092 196.882 153.348 196.898 152.599C196.899 152.566 196.898 152.533 196.897 152.499L196.899 152.5Z" fill="url(#paint9_linear_1173_5301)"/>
|
||||||
|
<path opacity="0.3" d="M191.646 151.311L179.559 158.488L174.968 160.172V165.42C176.265 165.42 177.563 165.131 178.551 164.551L195.418 154.662C196.389 154.092 196.883 153.347 196.899 152.599C196.9 152.565 196.898 152.532 196.897 152.498L196.9 152.499V148.618L195.934 148.072H195.833C195.502 149.875 193.404 151.063 191.646 151.311Z" fill="#0F054C"/>
|
||||||
|
<path d="M171.387 160.609L154.519 150.719C152.544 149.561 152.544 147.677 154.519 146.519L171.386 136.629C173.361 135.471 176.575 135.471 178.55 136.629L195.418 146.519C197.393 147.677 197.393 149.561 195.418 150.719L178.551 160.609C176.576 161.766 173.362 161.766 171.387 160.609Z" fill="url(#paint10_linear_1173_5301)"/>
|
||||||
|
<path d="M174.968 158.813C173.928 158.813 172.888 158.581 172.096 158.116L158.918 150.389C158.124 149.923 157.687 149.295 157.687 148.618C157.687 147.942 158.124 147.313 158.918 146.847L172.096 139.12C173.68 138.193 176.256 138.193 177.84 139.121L191.019 146.847C191.813 147.313 192.25 147.943 192.25 148.619C192.25 149.295 191.813 149.924 191.019 150.389L177.84 158.116C177.049 158.581 176.009 158.813 174.968 158.813ZM172.244 157.857C173.746 158.738 176.191 158.738 177.693 157.857L190.871 150.129C191.569 149.72 191.954 149.184 191.954 148.62C191.954 148.055 191.569 147.518 190.87 147.109L177.692 139.382C176.189 138.502 173.745 138.501 172.243 139.382L159.065 147.109C158.366 147.518 157.981 148.055 157.981 148.619C157.981 149.183 158.366 149.72 159.065 150.129L172.244 157.857Z" fill="#5351AF"/>
|
||||||
|
<path d="M195.418 150.718L178.551 160.607C176.576 161.765 173.362 161.765 171.387 160.607L154.519 150.718C153.636 150.2 153.149 149.537 153.055 148.859C152.939 149.699 153.426 150.561 154.519 151.201L171.387 161.091C173.362 162.249 176.576 162.249 178.551 161.091L195.418 151.201C196.51 150.56 196.997 149.699 196.881 148.859C196.787 149.537 196.301 150.2 195.418 150.718Z" fill="white"/>
|
||||||
|
<g opacity="0.3">
|
||||||
|
<path d="M52.6433 42.7195V38.8381L51.586 38.2414C51.2875 40.073 49.1642 41.2802 47.3896 41.5305L35.3028 48.7079L30.0277 50.6425L13.1912 41.8189L13.58 41.5902C12.1406 40.9078 11.3663 39.3464 10.5877 37.9219L9.45444 38.6086L8.78076 38.8009V42.781C8.78076 43.5413 9.2745 44.3017 10.262 44.881L27.1301 54.7707C29.1051 55.9285 32.3191 55.9285 34.294 54.7707L51.1613 44.881C52.1326 44.3112 52.6263 43.5664 52.6417 42.8182C52.6425 42.7844 52.6408 42.7515 52.6399 42.7178L52.6433 42.7195Z" fill="url(#paint11_linear_1173_5301)"/>
|
||||||
|
<path opacity="0.3" d="M47.3894 41.5308L35.3026 48.7082L30.7114 50.3917V55.6396C32.0084 55.6396 33.3063 55.3504 34.2938 54.771L51.1611 44.8814C52.1324 44.3115 52.6261 43.5668 52.6415 42.8186C52.6423 42.7848 52.6406 42.7519 52.6397 42.7181L52.6423 42.719V38.8376L51.6762 38.292H51.5755C51.2464 40.0959 49.1478 41.2823 47.3894 41.5308Z" fill="#0F054C"/>
|
||||||
|
<path d="M27.1306 50.8283L10.2625 40.9386C8.28751 39.7808 8.28751 37.8964 10.2625 36.7385L27.1297 26.8488C29.1047 25.691 32.3187 25.691 34.2937 26.8488L51.1618 36.7385C53.1367 37.8964 53.1367 39.7808 51.1618 40.9386L34.2945 50.8283C32.3187 51.987 29.1055 51.987 27.1306 50.8283Z" fill="url(#paint12_linear_1173_5301)"/>
|
||||||
|
<g opacity="0.3">
|
||||||
|
<path d="M27.1306 50.8283L10.2625 40.9386C8.28751 39.7808 8.28751 37.8964 10.2625 36.7385L27.1297 26.8488C29.1047 25.691 32.3187 25.691 34.2937 26.8488L51.1618 36.7385C53.1367 37.8964 53.1367 39.7808 51.1618 40.9386L34.2945 50.8283C32.3187 51.987 29.1055 51.987 27.1306 50.8283Z" fill="#0F054C"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path d="M30.7127 38.3613C29.5615 38.3613 28.4103 38.1041 27.5337 37.5905L10.6655 27.7008C9.78977 27.1873 9.30713 26.4937 9.30713 25.7498C9.30713 25.0059 9.78892 24.3122 10.6655 23.7987L27.5328 13.909C29.2861 12.8819 32.1376 12.8819 33.8909 13.909L50.759 23.7987C51.6348 24.3122 52.1175 25.0059 52.1175 25.7498C52.1175 26.4937 51.6356 27.1873 50.759 27.7008L33.8917 37.5905C33.016 38.1041 31.8648 38.3613 30.7127 38.3613ZM27.6812 37.3299C29.3526 38.3102 32.072 38.3119 33.7451 37.3299L50.6123 27.4402C51.3926 26.9829 51.8224 26.3819 51.8224 25.7498C51.8224 25.1167 51.3926 24.5166 50.6123 24.0593L33.7442 14.1696C32.072 13.1885 29.3534 13.1885 27.6812 14.1696L10.8139 24.0593C10.0337 24.5166 9.60388 25.1176 9.60388 25.7498C9.60388 26.3819 10.0337 26.9829 10.8139 27.4402L27.6812 37.3299Z" fill="#42E8E0"/>
|
||||||
|
<path opacity="0.4" d="M52.6433 21.9537V16.0875L51.586 15.4908C51.2875 17.3224 49.1642 18.5296 47.3896 18.7807L35.3028 25.959L30.0277 27.8936L13.1912 19.0699L13.58 18.8422C12.1406 18.1598 11.3663 16.5984 10.5877 15.1738L9.45444 15.8606L8.78076 16.0528V22.0178C8.78076 22.7781 9.2745 23.5385 10.262 24.1178L27.1301 34.0075C29.1051 35.1654 32.3191 35.1654 34.294 34.0075L51.1613 24.1178C52.1326 23.548 52.6263 22.8033 52.6417 22.055C52.6425 22.0213 52.6408 21.9884 52.6399 21.9546L52.6433 21.9537Z" fill="#42E8E0"/>
|
||||||
|
<path d="M52.6433 16.7401V12.8587L51.586 12.262C51.2875 14.0936 49.1642 15.3008 47.3896 15.552L35.3028 22.7293L30.0277 24.664L13.1912 15.8403L13.58 15.6117C12.1406 14.9293 11.3663 13.3679 10.5877 11.9434L9.45444 12.6301L8.78076 12.8223V16.8025C8.78076 17.5628 9.2745 18.3232 10.262 18.9025L27.1301 28.7922C29.1051 29.95 32.3191 29.95 34.294 28.7922L51.1613 18.9025C52.1326 18.3327 52.6263 17.5879 52.6417 16.8397C52.6425 16.8059 52.6408 16.773 52.6399 16.7392L52.6433 16.7401Z" fill="url(#paint13_linear_1173_5301)"/>
|
||||||
|
<path opacity="0.3" d="M47.3894 15.5504L35.3026 22.7277L30.7114 24.4112V29.6592C32.0084 29.6592 33.3063 29.3699 34.2938 28.7906L51.1611 18.9009C52.1324 18.3311 52.6261 17.5863 52.6415 16.8381C52.6423 16.8043 52.6406 16.7714 52.6397 16.7376L52.6423 16.7385V12.8571L51.6762 12.3115H51.5755C51.2464 14.1154 49.1478 15.3018 47.3894 15.5504Z" fill="#0F054C"/>
|
||||||
|
<path d="M27.1306 24.8478L10.2625 14.9582C8.28751 13.8003 8.28751 11.9159 10.2625 10.7581L27.1297 0.868379C29.1047 -0.28946 32.3187 -0.28946 34.2937 0.868379L51.1618 10.7581C53.1367 11.9159 53.1367 13.8003 51.1618 14.9582L34.2945 24.8478C32.3187 26.0065 29.1055 26.0065 27.1306 24.8478Z" fill="url(#paint14_linear_1173_5301)"/>
|
||||||
|
<path d="M30.7124 23.0509C29.672 23.0509 28.6325 22.8188 27.8403 22.3547L14.662 14.6282C13.8673 14.1623 13.4307 13.5328 13.4307 12.8564C13.4307 12.1809 13.8681 11.5514 14.662 11.0863L27.8403 3.35903C29.423 2.43241 32 2.43241 33.5844 3.35903L46.7627 11.0863C47.5566 11.5522 47.9941 12.1809 47.9941 12.8573C47.9941 13.5336 47.5566 14.1623 46.7627 14.6282L33.5844 22.3547C32.7931 22.8188 31.7527 23.0509 30.7124 23.0509ZM30.7124 2.95894C29.7257 2.95894 28.7391 3.1789 27.9878 3.61969L14.8096 11.347C14.1112 11.7566 13.7265 12.2927 13.7257 12.8564C13.7257 13.421 14.1103 13.958 14.8096 14.3676L27.9878 22.094C29.4895 22.9756 31.9335 22.9756 33.4369 22.094L46.6152 14.3676C47.3136 13.958 47.699 13.421 47.699 12.8573C47.699 12.2935 47.3136 11.7566 46.6152 11.347L33.4369 3.61969C32.6856 3.17977 31.6981 2.95894 30.7124 2.95894Z" fill="#5351AF"/>
|
||||||
|
<path d="M51.1621 14.959L34.2948 24.8487C32.3198 26.0065 29.1058 26.0065 27.1309 24.8487L10.2628 14.959C9.38017 14.4411 8.89325 13.7787 8.79944 13.1006C8.68347 13.9397 9.17039 14.8023 10.2628 15.4422L27.1309 25.3319C29.1058 26.4898 32.3198 26.4898 34.2948 25.3319L51.1621 15.4422C52.2544 14.8023 52.7413 13.9397 52.6254 13.1006C52.5316 13.7795 52.0446 14.442 51.1621 14.959Z" fill="white"/>
|
||||||
|
<g opacity="0.4">
|
||||||
|
<path d="M117.898 105.45L71.0659 77.9914C69.6844 77.1817 69.6844 75.157 71.0659 74.3464L140.343 33.7276C142.733 32.3265 145.677 32.3265 148.067 33.7276L194.899 61.1858C196.28 61.9955 196.28 64.0202 194.899 64.8308L125.622 105.45C123.232 106.851 120.287 106.851 117.898 105.45Z" fill="#24126A"/>
|
||||||
|
</g>
|
||||||
|
<path d="M148.135 38.2887L141.3 34.28L142.79 33.4062L149.626 37.415L148.135 38.2887Z" fill="#42E8E0"/>
|
||||||
|
<path d="M153.969 41.7096L150.551 39.7048L152.042 38.8311L155.46 40.835L153.969 41.7096Z" fill="#42E8E0"/>
|
||||||
|
<path d="M146.658 41.52L143.746 39.8123L145.236 38.9385L148.148 40.6462L146.658 41.52Z" fill="#42E8E0"/>
|
||||||
|
<path d="M151.536 44.3806L148.118 42.3767L149.609 41.5029L153.027 43.5068L151.536 44.3806Z" fill="#42E8E0"/>
|
||||||
|
<path d="M153.682 49.7383L140.25 41.8621L141.74 40.9883L155.173 48.8645L153.682 49.7383Z" fill="#42E8E0"/>
|
||||||
|
<path d="M115.349 65.3243L101.917 57.4489L103.408 56.5742L116.84 64.4505L115.349 65.3243Z" fill="#42E8E0"/>
|
||||||
|
<path d="M120.516 68.3523L117.099 66.3484L118.589 65.4746L122.007 67.4785L120.516 68.3523Z" fill="#42E8E0"/>
|
||||||
|
<path d="M139.668 45.6195L136.755 43.9118L138.245 43.0371L141.158 44.7449L139.668 45.6195Z" fill="#42E8E0"/>
|
||||||
|
<path d="M144.546 48.4792L141.128 46.4752L142.619 45.6006L146.037 47.6054L144.546 48.4792Z" fill="#42E8E0"/>
|
||||||
|
<path d="M140.644 50.2897L133.26 45.9597L134.751 45.0859L142.135 49.4151L140.644 50.2897Z" fill="#42E8E0"/>
|
||||||
|
<path d="M145.587 53.1873L142.169 51.1834L143.66 50.3096L147.078 52.3135L145.587 53.1873Z" fill="#42E8E0"/>
|
||||||
|
<path d="M150.556 56.1004L147.138 54.0964L148.628 53.2227L152.046 55.2266L150.556 56.1004Z" fill="#42E8E0"/>
|
||||||
|
<path d="M158.574 60.8037L152.106 57.0115L153.597 56.1377L160.064 59.9299L158.574 60.8037Z" fill="#42E8E0"/>
|
||||||
|
<path d="M147.707 62.6277L144.289 60.6238L145.78 59.75L149.198 61.7539L147.707 62.6277Z" fill="#42E8E0"/>
|
||||||
|
<path d="M155.726 67.3301L149.258 63.5379L150.749 62.6641L157.216 66.4563L155.726 67.3301Z" fill="#42E8E0"/>
|
||||||
|
<path d="M129.688 52.0631L126.271 50.0592L127.761 49.1846L131.179 51.1894L129.688 52.0631Z" fill="#42E8E0"/>
|
||||||
|
<path d="M134.657 54.9762L131.239 52.9723L132.729 52.0977L136.148 54.1024L134.657 54.9762Z" fill="#42E8E0"/>
|
||||||
|
<path d="M142.675 59.6766L136.207 55.8844L137.698 55.0098L144.165 58.8028L142.675 59.6766Z" fill="#42E8E0"/>
|
||||||
|
<path d="M156.055 63.4245L152.638 61.4197L154.128 60.5459L157.546 62.5498L156.055 63.4245Z" fill="#42E8E0"/>
|
||||||
|
<path d="M161.025 66.3385L157.606 64.3338L159.097 63.46L162.516 65.4639L161.025 66.3385Z" fill="#42E8E0"/>
|
||||||
|
<path d="M125.863 71.4871L122.445 69.4832L123.936 68.6094L127.354 70.6133L125.863 71.4871Z" fill="#42E8E0"/>
|
||||||
|
<path d="M133.882 76.1904L127.414 72.3982L128.904 71.5244L135.372 75.3166L133.882 76.1904Z" fill="#42E8E0"/>
|
||||||
|
<path d="M122.698 56.1609L119.279 54.157L120.77 53.2832L124.189 55.2871L122.698 56.1609Z" fill="#42E8E0"/>
|
||||||
|
<path d="M130.716 60.8623L124.248 57.0701L125.739 56.1963L132.207 59.9885L130.716 60.8623Z" fill="#42E8E0"/>
|
||||||
|
<path d="M126.713 76.0846L123.295 74.0798L124.786 73.2061L128.203 75.2108L126.713 76.0846Z" fill="#42E8E0"/>
|
||||||
|
<path d="M134.731 80.7851L128.263 76.9929L129.753 76.1191L136.221 79.9113L134.731 80.7851Z" fill="#42E8E0"/>
|
||||||
|
<path d="M163.9 55.7292L160.482 53.7253L161.973 52.8506L165.391 54.8545L163.9 55.7292Z" fill="#42E8E0"/>
|
||||||
|
<path d="M158.732 52.698L155.314 50.6941L156.805 49.8203L160.223 51.8242L158.732 52.698Z" fill="#42E8E0"/>
|
||||||
|
<path d="M171.918 60.4287L165.451 56.6365L166.942 55.7627L173.409 59.5549L171.918 60.4287Z" fill="#42E8E0"/>
|
||||||
|
<path d="M132.849 49.8168L129.765 48.0086L131.255 47.1348L134.34 48.943L132.849 49.8168Z" fill="#42E8E0"/>
|
||||||
|
<path d="M141.994 55.1799L134.498 50.7849L135.989 49.9111L143.484 54.3061L141.994 55.1799Z" fill="#42E8E0"/>
|
||||||
|
<path d="M151.139 60.5402L143.643 56.1453L145.134 55.2715L152.629 59.6664L151.139 60.5402Z" fill="#42E8E0"/>
|
||||||
|
<path d="M130.336 56.5422L122.841 52.1472L124.331 51.2734L131.827 55.6684L130.336 56.5422Z" fill="#42E8E0"/>
|
||||||
|
<path d="M134.289 58.8577L131.986 57.5076L133.477 56.6338L135.779 57.9839L134.289 58.8577Z" fill="#42E8E0"/>
|
||||||
|
<path d="M138.248 61.1799L135.946 59.8298L137.437 58.9561L139.738 60.3061L138.248 61.1799Z" fill="#42E8E0"/>
|
||||||
|
<path d="M145.57 65.4722L139.906 62.152L141.396 61.2773L147.06 64.5984L145.57 65.4722Z" fill="#42E8E0"/>
|
||||||
|
<path d="M147.108 66.3756L141.445 63.0545L142.935 62.1807L148.599 65.5018L147.108 66.3756Z" fill="#42E8E0"/>
|
||||||
|
<path d="M162.397 63.0432L160.095 61.694L161.586 60.8193L163.887 62.1694L162.397 63.0432Z" fill="#42E8E0"/>
|
||||||
|
<path d="M108.253 69.3591L100.869 65.0291L102.359 64.1553L109.743 68.4853L108.253 69.3591Z" fill="#42E8E0"/>
|
||||||
|
<path d="M113.196 72.2585L109.778 70.2545L111.269 69.3799L114.687 71.3847L113.196 72.2585Z" fill="#42E8E0"/>
|
||||||
|
<path d="M118.164 75.1706L114.746 73.1666L116.236 72.292L119.655 74.2968L118.164 75.1706Z" fill="#42E8E0"/>
|
||||||
|
<path d="M126.183 79.8729L119.715 76.0807L121.205 75.2061L127.673 78.9983L126.183 79.8729Z" fill="#42E8E0"/>
|
||||||
|
<path d="M115.15 81.6003L111.731 79.5955L113.222 78.7217L116.64 80.7256L115.15 81.6003Z" fill="#42E8E0"/>
|
||||||
|
<path d="M123.168 86.2998L116.7 82.5076L118.19 81.6338L124.658 85.426L123.168 86.2998Z" fill="#42E8E0"/>
|
||||||
|
<path d="M97.2962 71.1326L93.8784 69.1287L95.369 68.2549L98.7868 70.2588L97.2962 71.1326Z" fill="#42E8E0"/>
|
||||||
|
<path d="M102.265 74.0447L98.8467 72.0408L100.337 71.167L103.756 73.1709L102.265 74.0447Z" fill="#42E8E0"/>
|
||||||
|
<path d="M110.284 78.7461L103.816 74.9539L105.307 74.0801L111.775 77.8723L110.284 78.7461Z" fill="#42E8E0"/>
|
||||||
|
<path d="M100.457 68.888L97.373 67.0798L98.8637 66.2061L101.948 68.0143L100.457 68.888Z" fill="#42E8E0"/>
|
||||||
|
<path d="M109.603 74.2492L102.107 69.8543L103.598 68.9805L111.093 73.3754L109.603 74.2492Z" fill="#42E8E0"/>
|
||||||
|
<path d="M118.748 79.6105L111.252 75.2156L112.743 74.3418L120.238 78.7367L118.748 79.6105Z" fill="#42E8E0"/>
|
||||||
|
<path d="M91.8989 72.0656L84.4033 67.6707L85.8939 66.7969L93.3895 71.1918L91.8989 72.0656Z" fill="#42E8E0"/>
|
||||||
|
<path d="M95.8507 74.3831L93.5483 73.0338L95.0389 72.1592L97.3413 73.5093L95.8507 74.3831Z" fill="#42E8E0"/>
|
||||||
|
<path d="M99.8112 76.7053L97.5088 75.3561L98.9994 74.4814L101.302 75.8315L99.8112 76.7053Z" fill="#42E8E0"/>
|
||||||
|
<path d="M79.7811 95.3645L77.4795 94.0144L78.9701 93.1406L81.2717 94.4907L79.7811 95.3645Z" fill="#42E8E0"/>
|
||||||
|
<path d="M107.132 80.9968L101.468 77.6765L102.959 76.8027L108.623 80.123L107.132 80.9968Z" fill="#42E8E0"/>
|
||||||
|
<path d="M108.671 81.899L103.007 78.5788L104.498 77.7041L110.161 81.0252L108.671 81.899Z" fill="#42E8E0"/>
|
||||||
|
<path d="M106.77 64.3928L104.469 63.0427L105.959 62.1689L108.261 63.519L106.77 64.3928Z" fill="#42E8E0"/>
|
||||||
|
<path d="M114.092 68.6851L108.428 65.364L109.919 64.4902L115.583 67.8113L114.092 68.6851Z" fill="#42E8E0"/>
|
||||||
|
<path d="M121.571 73.0709L115.908 69.7498L117.399 68.876L123.062 72.1971L121.571 73.0709Z" fill="#42E8E0"/>
|
||||||
|
<path d="M112.213 54.1125L109.91 52.7625L111.401 51.8887L113.703 53.2388L112.213 54.1125Z" fill="#42E8E0"/>
|
||||||
|
<path d="M119.534 58.4039L113.871 55.0828L115.361 54.209L121.024 57.5301L119.534 58.4039Z" fill="#42E8E0"/>
|
||||||
|
<path d="M127.014 62.7896L121.35 59.4694L122.84 58.5947L128.503 61.9158L127.014 62.7896Z" fill="#42E8E0"/>
|
||||||
|
<path d="M121.76 99.9813C120.394 99.9813 119.03 99.6245 117.813 98.9109L70.9822 71.4527C70.2804 71.0405 69.8608 70.3044 69.8608 69.4817C69.8608 68.659 70.2795 67.9221 70.9822 67.5107L140.259 26.892C142.693 25.464 145.718 25.4648 148.152 26.892L194.984 54.3502C195.686 54.7624 196.104 55.4985 196.104 56.3212C196.104 57.1439 195.686 57.8808 194.984 58.2922L125.706 98.9109C124.488 99.6245 123.124 99.9813 121.76 99.9813ZM144.205 26.1628C142.898 26.1628 141.592 26.5049 140.427 27.1882L71.1502 67.8069C70.5541 68.1559 70.1985 68.782 70.1985 69.4809C70.1985 70.1797 70.5541 70.805 71.1502 71.1548L117.982 98.613C120.312 99.9796 123.207 99.9796 125.537 98.613L194.814 57.9943C195.41 57.6453 195.766 57.0192 195.766 56.3203C195.766 55.6214 195.41 54.9962 194.814 54.6463L147.982 27.1882C146.818 26.5049 145.511 26.1628 144.205 26.1628Z" fill="#42E8E0"/>
|
||||||
|
<path opacity="0.4" d="M95.0911 118.606L48.2592 91.1483C46.8778 90.3386 46.8778 88.3139 48.2592 87.5033L55.4086 83.2755C57.798 81.8743 60.7426 81.8743 63.1328 83.2755L109.965 110.734C111.346 111.543 111.346 113.568 109.965 114.379L102.815 118.606C100.425 120.008 97.4805 120.008 95.0911 118.606Z" fill="#24126A"/>
|
||||||
|
<path d="M71.646 90.5402L64.1504 86.1453L65.641 85.2715L73.1366 89.6664L71.646 90.5402Z" fill="#42E8E0"/>
|
||||||
|
<path d="M92.7765 103.238L90.4741 101.887L91.9647 101.014L94.2671 102.364L92.7765 103.238Z" fill="#42E8E0"/>
|
||||||
|
<path d="M75.9885 93.1536L73.686 91.8035L75.1766 90.9297L77.479 92.2798L75.9885 93.1536Z" fill="#42E8E0"/>
|
||||||
|
<path d="M98.9527 113.136C97.5874 113.136 96.2231 112.779 95.0062 112.066L48.1752 84.6077C47.4734 84.1964 47.0547 83.4603 47.0547 82.6367C47.0547 81.814 47.4742 81.077 48.1752 80.6666L55.3246 76.4379C57.7583 75.0099 60.7839 75.0107 63.2176 76.4379L110.049 103.896C110.751 104.308 111.17 105.044 111.17 105.867C111.17 106.69 110.751 107.427 110.049 107.838L102.901 112.066C101.682 112.779 100.317 113.136 98.9527 113.136ZM59.2702 75.7096C57.9638 75.7096 56.6574 76.0517 55.4926 76.7349L48.3432 80.9636C47.7471 81.3126 47.3915 81.9378 47.3915 82.6367C47.3915 83.3364 47.7471 83.9608 48.3432 84.3107L95.1742 111.769C97.5039 113.135 100.399 113.135 102.73 111.769L109.878 107.541C110.474 107.192 110.83 106.566 110.83 105.867C110.83 105.168 110.474 104.543 109.878 104.193L63.047 76.7349C61.8831 76.0517 60.5766 75.7096 59.2702 75.7096Z" fill="#42E8E0"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_1173_5301" x1="0.169666" y1="84.0781" x2="247.712" y2="84.0781" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#BCBEFF"/>
|
||||||
|
<stop offset="0.151" stop-color="#A3A7F5"/>
|
||||||
|
<stop offset="0.3866" stop-color="#8289E8"/>
|
||||||
|
<stop offset="0.6124" stop-color="#6A73DF"/>
|
||||||
|
<stop offset="0.8221" stop-color="#5C66D9"/>
|
||||||
|
<stop offset="1" stop-color="#5761D7"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint1_linear_1173_5301" x1="158.419" y1="119.644" x2="87.9546" y2="27.5651" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#42E8E0"/>
|
||||||
|
<stop offset="0.1055" stop-color="#37B6BF"/>
|
||||||
|
<stop offset="0.2197" stop-color="#2C87A1"/>
|
||||||
|
<stop offset="0.338" stop-color="#235F87"/>
|
||||||
|
<stop offset="0.4587" stop-color="#1C3F72"/>
|
||||||
|
<stop offset="0.5824" stop-color="#162561"/>
|
||||||
|
<stop offset="0.7105" stop-color="#121355"/>
|
||||||
|
<stop offset="0.8458" stop-color="#10084E"/>
|
||||||
|
<stop offset="1" stop-color="#0F054C"/>
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient id="paint2_radial_1173_5301" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(87.6672 87.584) scale(193.753 196.764)">
|
||||||
|
<stop stop-color="#42E8E0"/>
|
||||||
|
<stop offset="0.1055" stop-color="#37B6BF"/>
|
||||||
|
<stop offset="0.2197" stop-color="#2C87A1"/>
|
||||||
|
<stop offset="0.338" stop-color="#235F87"/>
|
||||||
|
<stop offset="0.4587" stop-color="#1C3F72"/>
|
||||||
|
<stop offset="0.5824" stop-color="#162561"/>
|
||||||
|
<stop offset="0.7105" stop-color="#121355"/>
|
||||||
|
<stop offset="0.8458" stop-color="#10084E"/>
|
||||||
|
<stop offset="1" stop-color="#0F054C"/>
|
||||||
|
</radialGradient>
|
||||||
|
<linearGradient id="paint3_linear_1173_5301" x1="232.502" y1="145.726" x2="267.569" y2="165.662" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#BCBEFF"/>
|
||||||
|
<stop offset="0.2271" stop-color="#AAADF8"/>
|
||||||
|
<stop offset="0.6802" stop-color="#7C83E5"/>
|
||||||
|
<stop offset="1" stop-color="#5761D7"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint4_linear_1173_5301" x1="228.138" y1="153.438" x2="272" y2="153.438" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#E9E9FD"/>
|
||||||
|
<stop offset="0.3601" stop-color="#D3D2F9"/>
|
||||||
|
<stop offset="0.7062" stop-color="#C5C4F7"/>
|
||||||
|
<stop offset="1" stop-color="#C0BFF6"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint5_linear_1173_5301" x1="232.502" y1="119.712" x2="267.569" y2="139.648" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#BCBEFF"/>
|
||||||
|
<stop offset="0.2271" stop-color="#AAADF8"/>
|
||||||
|
<stop offset="0.6802" stop-color="#7C83E5"/>
|
||||||
|
<stop offset="1" stop-color="#5761D7"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint6_linear_1173_5301" x1="228.138" y1="127.425" x2="272" y2="127.425" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#E9E9FD"/>
|
||||||
|
<stop offset="0.3601" stop-color="#D3D2F9"/>
|
||||||
|
<stop offset="0.7062" stop-color="#C5C4F7"/>
|
||||||
|
<stop offset="1" stop-color="#C0BFF6"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint7_linear_1173_5301" x1="157.401" y1="168.806" x2="192.468" y2="188.742" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#BCBEFF"/>
|
||||||
|
<stop offset="0.2271" stop-color="#AAADF8"/>
|
||||||
|
<stop offset="0.6802" stop-color="#7C83E5"/>
|
||||||
|
<stop offset="1" stop-color="#5761D7"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint8_linear_1173_5301" x1="153.038" y1="176.518" x2="196.899" y2="176.518" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#E9E9FD"/>
|
||||||
|
<stop offset="0.3601" stop-color="#D3D2F9"/>
|
||||||
|
<stop offset="0.7062" stop-color="#C5C4F7"/>
|
||||||
|
<stop offset="1" stop-color="#C0BFF6"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint9_linear_1173_5301" x1="157.401" y1="140.906" x2="192.468" y2="160.842" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#BCBEFF"/>
|
||||||
|
<stop offset="0.2271" stop-color="#AAADF8"/>
|
||||||
|
<stop offset="0.6802" stop-color="#7C83E5"/>
|
||||||
|
<stop offset="1" stop-color="#5761D7"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint10_linear_1173_5301" x1="153.038" y1="148.619" x2="196.899" y2="148.619" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#E9E9FD"/>
|
||||||
|
<stop offset="0.3601" stop-color="#D3D2F9"/>
|
||||||
|
<stop offset="0.7062" stop-color="#C5C4F7"/>
|
||||||
|
<stop offset="1" stop-color="#C0BFF6"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint11_linear_1173_5301" x1="13.1453" y1="31.1254" x2="48.2119" y2="51.0614" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#BCBEFF"/>
|
||||||
|
<stop offset="0.2271" stop-color="#AAADF8"/>
|
||||||
|
<stop offset="0.6802" stop-color="#7C83E5"/>
|
||||||
|
<stop offset="1" stop-color="#5761D7"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint12_linear_1173_5301" x1="8.78134" y1="38.8387" x2="52.6427" y2="38.8387" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#E9E9FD"/>
|
||||||
|
<stop offset="0.3601" stop-color="#D3D2F9"/>
|
||||||
|
<stop offset="0.7062" stop-color="#C5C4F7"/>
|
||||||
|
<stop offset="1" stop-color="#C0BFF6"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint13_linear_1173_5301" x1="13.1453" y1="5.14606" x2="48.2119" y2="25.082" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#BCBEFF"/>
|
||||||
|
<stop offset="0.2271" stop-color="#AAADF8"/>
|
||||||
|
<stop offset="0.6802" stop-color="#7C83E5"/>
|
||||||
|
<stop offset="1" stop-color="#5761D7"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint14_linear_1173_5301" x1="8.78134" y1="12.8582" x2="52.6427" y2="12.8582" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#E9E9FD"/>
|
||||||
|
<stop offset="0.3601" stop-color="#D3D2F9"/>
|
||||||
|
<stop offset="0.7062" stop-color="#C5C4F7"/>
|
||||||
|
<stop offset="1" stop-color="#C0BFF6"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 36 KiB |
BIN
assets/wave.png
Normal file
|
After Width: | Height: | Size: 935 KiB |
34
ios/.gitignore
vendored
Normal file
@@ -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
|
||||||
26
ios/Flutter/AppFrameworkInfo.plist
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>en</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>App</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>io.flutter.flutter.app</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>App</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>FMWK</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>1.0</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>1.0</string>
|
||||||
|
<key>MinimumOSVersion</key>
|
||||||
|
<string>12.0</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
1
ios/Flutter/Debug.xcconfig
Normal file
@@ -0,0 +1 @@
|
|||||||
|
#include "Generated.xcconfig"
|
||||||
1
ios/Flutter/Release.xcconfig
Normal file
@@ -0,0 +1 @@
|
|||||||
|
#include "Generated.xcconfig"
|
||||||
616
ios/Runner.xcodeproj/project.pbxproj
Normal file
@@ -0,0 +1,616 @@
|
|||||||
|
// !$*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 = "<group>"; };
|
||||||
|
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
|
||||||
|
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
|
||||||
|
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 = "<group>"; };
|
||||||
|
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
|
||||||
|
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
||||||
|
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
|
||||||
|
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
|
||||||
|
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
|
||||||
|
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 = "<group>"; };
|
||||||
|
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
||||||
|
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
||||||
|
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||||
|
/* 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 = "<group>";
|
||||||
|
};
|
||||||
|
9740EEB11CF90186004384FC /* Flutter */ = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
|
||||||
|
9740EEB21CF90195004384FC /* Debug.xcconfig */,
|
||||||
|
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
|
||||||
|
9740EEB31CF90195004384FC /* Generated.xcconfig */,
|
||||||
|
);
|
||||||
|
name = Flutter;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
97C146E51CF9000F007C117D = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
9740EEB11CF90186004384FC /* Flutter */,
|
||||||
|
97C146F01CF9000F007C117D /* Runner */,
|
||||||
|
97C146EF1CF9000F007C117D /* Products */,
|
||||||
|
331C8082294A63A400263BE5 /* RunnerTests */,
|
||||||
|
);
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
97C146EF1CF9000F007C117D /* Products */ = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
97C146EE1CF9000F007C117D /* Runner.app */,
|
||||||
|
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
|
||||||
|
);
|
||||||
|
name = Products;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
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 = "<group>";
|
||||||
|
};
|
||||||
|
/* 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 = "<group>";
|
||||||
|
};
|
||||||
|
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
|
||||||
|
isa = PBXVariantGroup;
|
||||||
|
children = (
|
||||||
|
97C147001CF9000F007C117D /* Base */,
|
||||||
|
);
|
||||||
|
name = LaunchScreen.storyboard;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
|
/* 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)";
|
||||||
|
ENABLE_BITCODE = NO;
|
||||||
|
INFOPLIST_FILE = Runner/Info.plist;
|
||||||
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"@executable_path/Frameworks",
|
||||||
|
);
|
||||||
|
PRODUCT_BUNDLE_IDENTIFIER = com.sparkit.beHappy;
|
||||||
|
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.sparkit.beHappy.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.sparkit.beHappy.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.sparkit.beHappy.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)";
|
||||||
|
ENABLE_BITCODE = NO;
|
||||||
|
INFOPLIST_FILE = Runner/Info.plist;
|
||||||
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"@executable_path/Frameworks",
|
||||||
|
);
|
||||||
|
PRODUCT_BUNDLE_IDENTIFIER = com.sparkit.beHappy;
|
||||||
|
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.sparkit.beHappy;
|
||||||
|
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 */;
|
||||||
|
}
|
||||||
7
ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
generated
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<Workspace
|
||||||
|
version = "1.0">
|
||||||
|
<FileRef
|
||||||
|
location = "self:">
|
||||||
|
</FileRef>
|
||||||
|
</Workspace>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>IDEDidComputeMac32BitWarning</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>PreviewsEnabled</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||