create: new folder

This commit is contained in:
abiyasa05 2024-12-31 09:26:36 +07:00
parent c7cab0b367
commit f92a123e1a
260 changed files with 16406 additions and 0 deletions

Binary file not shown.

44
easycook_mobile/.gitignore vendored Normal file
View File

@ -0,0 +1,44 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.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

45
easycook_mobile/.metadata Normal file
View File

@ -0,0 +1,45 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled.
version:
revision: d6260f127fe3f88c98231243b387b48448479bff
channel: dev
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: d6260f127fe3f88c98231243b387b48448479bff
base_revision: d6260f127fe3f88c98231243b387b48448479bff
- platform: android
create_revision: d6260f127fe3f88c98231243b387b48448479bff
base_revision: d6260f127fe3f88c98231243b387b48448479bff
- platform: ios
create_revision: d6260f127fe3f88c98231243b387b48448479bff
base_revision: d6260f127fe3f88c98231243b387b48448479bff
- platform: linux
create_revision: d6260f127fe3f88c98231243b387b48448479bff
base_revision: d6260f127fe3f88c98231243b387b48448479bff
- platform: macos
create_revision: d6260f127fe3f88c98231243b387b48448479bff
base_revision: d6260f127fe3f88c98231243b387b48448479bff
- platform: web
create_revision: d6260f127fe3f88c98231243b387b48448479bff
base_revision: d6260f127fe3f88c98231243b387b48448479bff
- platform: windows
create_revision: d6260f127fe3f88c98231243b387b48448479bff
base_revision: d6260f127fe3f88c98231243b387b48448479bff
# 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
easycook_mobile/README.md Normal file
View File

@ -0,0 +1,16 @@
# easycook_mobile
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.

View File

@ -0,0 +1,29 @@
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.
# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:flutter_lints/flutter.yaml
linter:
# The lint rules applied to this project can be customized in the
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
# included above or to enable additional rules. A list of all available lints
# and their documentation is published at
# https://dart-lang.github.io/linter/lints/index.html.
#
# Instead of disabling a lint rule for the entire project in the
# section below, it can also be suppressed for a single line of code
# or a specific dart file by using the `// ignore: name_of_lint` and
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options

13
easycook_mobile/android/.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
**/*.keystore
**/*.jks

View File

@ -0,0 +1,71 @@
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.easycook_mobile"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

View File

@ -0,0 +1,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.easycook_mobile">
<!-- 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>

View File

@ -0,0 +1,34 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.easycook_mobile">
<application
android:label="easycook_mobile"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
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>
</manifest>

View File

@ -0,0 +1,6 @@
package com.example.easycook_mobile
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}

View 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>

View 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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View 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>

View 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>

View File

@ -0,0 +1,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.easycook_mobile">
<!-- 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>

View File

@ -0,0 +1,31 @@
buildscript {
ext.kotlin_version = '1.7.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}

View File

@ -0,0 +1,3 @@
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true

View 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-7.5-all.zip

View File

@ -0,0 +1,11 @@
include ':app'
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
def properties = new Properties()
assert localPropertiesFile.exists()
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"

View File

@ -0,0 +1,3 @@
<svg width="39" height="38" viewBox="0 0 39 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.1425 4.64941C24.646 4.6649 25.8705 5.43904 26.5835 6.83249C26.7676 7.2002 27.0243 7.73726 27.2931 8.30381L27.6176 8.98886L27.777 9.32522L27.932 9.66584C27.994 9.77422 28.1025 9.85163 28.242 9.85163C31.962 9.85163 35 12.8863 35 16.6021V25.7989C35 29.5148 31.962 32.5494 28.242 32.5494H10.758C7.0225 32.5494 4 29.5148 4 25.7989V16.6021C4 12.8863 7.0225 9.85163 10.758 9.85163C10.882 9.85163 11.006 9.7897 11.0525 9.66584L11.1455 9.48005C11.5795 8.56656 12.1065 7.4518 12.4165 6.83249C13.1295 5.43904 14.3385 4.6649 15.842 4.64941H23.1425ZM19.5 14.5739C17.8725 14.5739 16.338 15.2087 15.1755 16.3699C14.0285 17.5311 13.393 19.0484 13.4085 20.6586C13.4085 22.2843 14.044 23.8016 15.191 24.9628C16.3535 26.1086 17.8725 26.7434 19.5 26.7434C21.174 26.7434 22.693 26.0621 23.7935 24.9628C24.894 23.8636 25.576 22.3463 25.5915 20.6586C25.5915 19.0484 24.956 17.5156 23.809 16.3544C22.662 15.2087 21.1275 14.5739 19.5 14.5739ZM19.5 16.8963C20.5075 16.8963 21.453 17.2834 22.166 17.9956C22.879 18.7078 23.2665 19.6522 23.2665 20.6586C23.251 22.7333 21.577 24.4209 19.5 24.4209C18.4925 24.4209 17.547 24.0339 16.834 23.3217C16.121 22.6095 15.7335 21.665 15.7335 20.6586V20.6431C15.718 19.6677 16.1055 18.7233 16.8185 18.0111C17.547 17.2834 18.4925 16.8963 19.5 16.8963ZM28.1955 14.2023C27.4205 14.2023 26.8005 14.8371 26.8005 15.6112C26.8005 16.3854 27.4205 17.0047 28.1955 17.0047C28.9705 17.0047 29.606 16.3854 29.606 15.6112C29.606 14.8371 28.9705 14.2023 28.1955 14.2023Z" fill="#F29D38"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,19 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_1181_1502)">
<circle cx="16" cy="16" r="12" fill="white"/>
<circle cx="16" cy="16" r="11.75" stroke="#F29D38" stroke-width="0.5"/>
</g>
<path d="M16.0009 21.1944L15.1953 20.4611C12.3342 17.8667 10.4453 16.1556 10.4453 14.0556C10.4453 12.3444 11.7898 11 13.5009 11C14.4675 11 15.3953 11.45 16.0009 12.1611C16.6064 11.45 17.5342 11 18.5009 11C20.212 11 21.5564 12.3444 21.5564 14.0556C21.5564 16.1556 19.6675 17.8667 16.8064 20.4667L16.0009 21.1944Z" fill="#F29D38"/>
<defs>
<filter id="filter0_d_1181_1502" x="0" y="0" width="32" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1181_1502"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1181_1502" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.5001 15.0002C15.9999 14.9994 15.5046 15.0995 15.0439 15.2944C14.5833 15.4893 14.1666 15.7751 13.8188 16.1346L9.49696 13.3596C9.83433 12.4848 9.83433 11.5157 9.49696 10.6409L13.8188 7.86587C14.4268 8.48767 15.232 8.87882 16.0966 8.97238C16.9612 9.06594 17.8315 8.85609 18.5584 8.37875C19.2854 7.90141 19.8238 7.18625 20.0816 6.35568C20.3393 5.52511 20.3004 4.63077 19.9715 3.82573C19.6425 3.02069 19.044 2.355 18.2784 1.9426C17.5127 1.53021 16.6275 1.39674 15.7743 1.56505C14.9211 1.73335 14.1529 2.19297 13.6012 2.86523C13.0496 3.53749 12.7487 4.38059 12.7501 5.25024C12.7516 5.71494 12.8374 6.17552 13.0032 6.60962L8.68133 9.38462C8.16101 8.85005 7.49306 8.48283 6.76292 8.32989C6.03277 8.17696 5.2736 8.24527 4.58249 8.52609C3.89137 8.80691 3.29972 9.28748 2.88318 9.90635C2.46664 10.5252 2.24414 11.2543 2.24414 12.0002C2.24414 12.7462 2.46664 13.4753 2.88318 14.0941C3.29972 14.713 3.89137 15.1936 4.58249 15.4744C5.2736 15.7552 6.03277 15.8235 6.76292 15.6706C7.49306 15.5177 8.16101 15.1504 8.68133 14.6159L13.0032 17.3909C12.8374 17.825 12.7516 18.2855 12.7501 18.7502C12.7501 19.4919 12.97 20.2169 13.3821 20.8336C13.7941 21.4503 14.3798 21.931 15.065 22.2148C15.7502 22.4986 16.5042 22.5729 17.2317 22.4282C17.9591 22.2835 18.6273 21.9263 19.1517 21.4019C19.6762 20.8774 20.0333 20.2093 20.178 19.4818C20.3227 18.7544 20.2485 18.0004 19.9646 17.3152C19.6808 16.63 19.2002 16.0443 18.5835 15.6322C17.9668 15.2202 17.2418 15.0002 16.5001 15.0002Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,3 @@
<svg width="15" height="14" viewBox="0 0 15 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.5 0L9.66011 4.52686L14.6329 5.18237L10.9951 8.63564L11.9084 13.5676L7.5 11.175L3.09161 13.5676L4.00487 8.63564L0.367076 5.18237L5.33989 4.52686L7.5 0Z" fill="#F29D38"/>
</svg>

After

Width:  |  Height:  |  Size: 284 B

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 20.25C9 20.5467 8.91203 20.8367 8.7472 21.0834C8.58238 21.33 8.34811 21.5223 8.07402 21.6358C7.79994 21.7494 7.49834 21.7791 7.20736 21.7212C6.91639 21.6633 6.64912 21.5204 6.43934 21.3107C6.22956 21.1009 6.0867 20.8336 6.02882 20.5426C5.97094 20.2517 6.00065 19.9501 6.11418 19.676C6.22771 19.4019 6.41997 19.1676 6.66664 19.0028C6.91332 18.838 7.20333 18.75 7.5 18.75C7.89782 18.75 8.27935 18.908 8.56066 19.1893C8.84196 19.4706 9 19.8522 9 20.25ZM17.25 18.75C16.9533 18.75 16.6633 18.838 16.4166 19.0028C16.17 19.1676 15.9777 19.4019 15.8642 19.676C15.7506 19.9501 15.7209 20.2517 15.7788 20.5426C15.8367 20.8336 15.9796 21.1009 16.1893 21.3107C16.3991 21.5204 16.6664 21.6633 16.9574 21.7212C17.2483 21.7791 17.5499 21.7494 17.824 21.6358C18.0981 21.5223 18.3324 21.33 18.4972 21.0834C18.662 20.8367 18.75 20.5467 18.75 20.25C18.75 19.8522 18.592 19.4706 18.3107 19.1893C18.0294 18.908 17.6478 18.75 17.25 18.75ZM21.5062 6.95625L19.0312 15.6188C18.8953 16.0883 18.6108 16.5012 18.2203 16.7953C17.8298 17.0894 17.3545 17.249 16.8656 17.25H7.88437C7.39551 17.249 6.92017 17.0894 6.52969 16.7953C6.13921 16.5012 5.85466 16.0883 5.71875 15.6188L3.24375 6.96563V6.94687L2.325 3.75H0.75C0.551088 3.75 0.360322 3.67098 0.21967 3.53033C0.0790176 3.38968 0 3.19891 0 3C0 2.80109 0.0790176 2.61032 0.21967 2.46967C0.360322 2.32902 0.551088 2.25 0.75 2.25H2.325C2.65078 2.25118 2.96744 2.35774 3.22766 2.55375C3.48788 2.74976 3.67769 3.0247 3.76875 3.3375L4.52812 6H20.7844C20.9005 5.99988 21.0152 6.02674 21.1192 6.07848C21.2232 6.13021 21.3138 6.20541 21.3838 6.29812C21.4537 6.39084 21.5012 6.49855 21.5225 6.61276C21.5438 6.72697 21.5382 6.84456 21.5062 6.95625V6.95625ZM19.7906 7.5H4.95937L7.1625 15.2062C7.20735 15.363 7.30208 15.5009 7.43234 15.5991C7.5626 15.6972 7.72129 15.7502 7.88437 15.75H16.8656C17.0287 15.7502 17.1874 15.6972 17.3177 15.5991C17.4479 15.5009 17.5427 15.363 17.5875 15.2062L19.7906 7.5Z" fill="#F29D38"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15 13V19H14V16M4 2V19M1 2V5C1 5.79565 1.31607 6.55871 1.87868 7.12132C2.44129 7.68393 3.20435 8 4 8C4.79565 8 5.55871 7.68393 6.12132 7.12132C6.68393 6.55871 7 5.79565 7 5V2M15 1V13H10C9.977 9.319 10.184 5.594 15 1Z" stroke="#748495" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 413 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.125 19.5V12.75H9.375" stroke="#F29D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21.375 19.5H2.625" stroke="#F29D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.375 19.5V8.25H14.625" stroke="#F29D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.875 3.75H14.625V19.5H19.875V3.75Z" stroke="#F29D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 580 B

View File

@ -0,0 +1,3 @@
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.4998 11.375C19.9542 11.5104 20.3869 11.6942 20.7979 11.9263C21.2088 12.1585 21.6391 12.5115 22.0888 12.9855C22.5384 13.4594 22.9228 14.018 23.2419 14.6613C23.561 15.3045 23.8269 16.1363 24.0396 17.1568C24.2523 18.1773 24.3587 19.3211 24.3587 20.5882C24.3587 22.0778 23.8752 23.3521 22.9083 24.4113C21.9413 25.4704 20.7761 26 19.4127 26H7.02605C5.66264 26 4.49746 25.4704 3.53051 24.4113C2.56356 23.3521 2.08008 22.0778 2.08008 20.5882C2.08008 19.3211 2.18644 18.1773 2.39917 17.1568C2.6119 16.1363 2.87782 15.3045 3.19691 14.6613C3.51601 14.018 3.90037 13.4594 4.35 12.9855C4.79964 12.5115 5.22993 12.1585 5.64089 11.9263C6.05184 11.6942 6.48455 11.5104 6.93902 11.375C6.17513 10.1659 5.79318 8.85045 5.79318 7.42857C5.79318 6.42262 5.98899 5.46261 6.38061 4.54855C6.77222 3.63449 7.30163 2.84375 7.96883 2.17634C8.63603 1.50893 9.42651 0.979353 10.3403 0.587612C11.2541 0.195871 12.2138 0 13.2194 0C14.225 0 15.1847 0.195871 16.0985 0.587612C17.0123 0.979353 17.8028 1.50893 18.47 2.17634C19.1371 2.84375 19.6666 3.63449 20.0582 4.54855C20.4498 5.46261 20.6456 6.42262 20.6456 7.42857C20.6456 8.85045 20.2637 10.1659 19.4998 11.375ZM13.2194 1.85714C11.6819 1.85714 10.3693 2.40123 9.28147 3.4894C8.19365 4.57757 7.64973 5.89062 7.64973 7.42857C7.64973 8.96652 8.19365 10.2796 9.28147 11.3677C10.3693 12.4559 11.6819 13 13.2194 13C14.7568 13 16.0695 12.4559 17.1573 11.3677C18.2451 10.2796 18.789 8.96652 18.789 7.42857C18.789 5.89062 18.2451 4.57757 17.1573 3.4894C16.0695 2.40123 14.7568 1.85714 13.2194 1.85714ZM19.4127 24.1429C20.2637 24.1429 20.9913 23.7971 21.5956 23.1055C22.2 22.4139 22.5022 21.5748 22.5022 20.5882C22.5022 18.2764 22.1226 16.4531 21.3636 15.1183C20.6045 13.7835 19.5143 13.0822 18.0928 13.0145C16.6908 14.2429 15.0663 14.8571 13.2194 14.8571C11.3725 14.8571 9.74802 14.2429 8.34594 13.0145C6.92452 13.0822 5.83428 13.7835 5.07522 15.1183C4.31616 16.4531 3.93663 18.2764 3.93663 20.5882C3.93663 21.5748 4.2388 22.4139 4.84315 23.1055C5.4475 23.7971 6.17513 24.1429 7.02605 24.1429H19.4127Z" fill="#748495"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,10 @@
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1265_5008)">
<path d="M1.36585 13.5C0.990244 13.5 0.668585 13.3663 0.400878 13.0989C0.133626 12.832 0 12.511 0 12.1358V2.58648C0 2.21133 0.133626 1.89006 0.400878 1.62268C0.668585 1.35575 0.990244 1.22229 1.36585 1.22229H7.46098L6.09512 2.58648H1.36585V12.1358H10.9268V7.39525L12.2927 6.03106V12.1358C12.2927 12.511 12.1591 12.832 11.8918 13.0989C11.6241 13.3663 11.3024 13.5 10.9268 13.5H1.36585ZM8.99756 1.61449L9.97073 2.56943L5.46341 7.07125V8.04324H6.41951L10.9439 3.52436L11.9171 4.47929L7.39268 8.99817C7.26748 9.12322 7.12247 9.22281 6.95766 9.29693C6.79239 9.3706 6.6187 9.40743 6.43659 9.40743H4.78049C4.58699 9.40743 4.42491 9.34218 4.29424 9.21167C4.16312 9.08071 4.09756 8.91859 4.09756 8.72533V7.07125C4.09756 6.88936 4.13171 6.71588 4.2 6.55082C4.26829 6.3862 4.36504 6.24137 4.49024 6.11632L8.99756 1.61449ZM11.9171 4.47929L8.99756 1.61449L10.7049 -0.0907429C10.978 -0.363581 11.3054 -0.5 11.6869 -0.5C12.068 -0.5 12.3894 -0.363581 12.6512 -0.0907429L13.6073 0.881242C13.8691 1.14271 14 1.46102 14 1.83618C14 2.21133 13.8691 2.52964 13.6073 2.79111L11.9171 4.47929Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1265_5008">
<rect width="14" height="15" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.425 15.075L11.675 12.15C11.775 12.1 11.8667 12.0333 11.95 11.95C12.0333 11.8667 12.1 11.775 12.15 11.675L15.075 5.425C15.1583 5.25833 15.1373 5.11267 15.012 4.988C14.8873 4.86267 14.7417 4.84167 14.575 4.925L8.325 7.85C8.225 7.9 8.13333 7.96667 8.05 8.05C7.96667 8.13333 7.9 8.225 7.85 8.325L4.925 14.575C4.84167 14.7417 4.86267 14.8873 4.988 15.012C5.11267 15.1373 5.25833 15.1583 5.425 15.075V15.075ZM10 11C9.71667 11 9.47933 10.904 9.288 10.712C9.096 10.5207 9 10.2833 9 10C9 9.71667 9.096 9.479 9.288 9.287C9.47933 9.09567 9.71667 9 10 9C10.2833 9 10.521 9.09567 10.713 9.287C10.9043 9.479 11 9.71667 11 10C11 10.2833 10.9043 10.5207 10.713 10.712C10.521 10.904 10.2833 11 10 11ZM10 20C8.61667 20 7.31667 19.7373 6.1 19.212C4.88333 18.6873 3.825 17.975 2.925 17.075C2.025 16.175 1.31267 15.1167 0.788 13.9C0.262667 12.6833 0 11.3833 0 10C0 8.61667 0.262667 7.31667 0.788 6.1C1.31267 4.88333 2.025 3.825 2.925 2.925C3.825 2.025 4.88333 1.31233 6.1 0.787C7.31667 0.262333 8.61667 0 10 0C11.3833 0 12.6833 0.262333 13.9 0.787C15.1167 1.31233 16.175 2.025 17.075 2.925C17.975 3.825 18.6873 4.88333 19.212 6.1C19.7373 7.31667 20 8.61667 20 10C20 11.3833 19.7373 12.6833 19.212 13.9C18.6873 15.1167 17.975 16.175 17.075 17.075C16.175 17.975 15.1167 18.6873 13.9 19.212C12.6833 19.7373 11.3833 20 10 20ZM10 18C12.2167 18 14.1043 17.221 15.663 15.663C17.221 14.1043 18 12.2167 18 10C18 7.78333 17.221 5.89567 15.663 4.337C14.1043 2.779 12.2167 2 10 2C7.78333 2 5.896 2.779 4.338 4.337C2.77933 5.89567 2 7.78333 2 10C2 12.2167 2.77933 14.1043 4.338 15.663C5.896 17.221 7.78333 18 10 18Z" fill="#748495"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,3 @@
<svg width="29" height="25" viewBox="0 0 29 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.4527 2C21.1808 1.99939 21.9017 2.14413 22.5731 2.42575C23.2445 2.70736 23.8529 3.12018 24.3627 3.64C25.4131 4.70638 26.0019 6.14316 26.0019 7.64C26.0019 9.13685 25.4131 10.5736 24.3627 11.64L14.0027 22.13L3.6427 11.64C2.59229 10.5736 2.00349 9.13685 2.00349 7.64C2.00349 6.14316 2.59229 4.70638 3.6427 3.64C4.1528 3.12055 4.76128 2.70795 5.43262 2.42629C6.10395 2.14464 6.82468 1.99957 7.5527 1.99957C8.28073 1.99957 9.00146 2.14464 9.67279 2.42629C10.3441 2.70795 10.9526 3.12055 11.4627 3.64L14.0027 6.24L16.5327 3.66C17.0409 3.13399 17.65 2.71586 18.3236 2.43064C18.9971 2.14542 19.7213 1.99895 20.4527 2ZM20.4527 2.68285e-06C19.4583 -0.000840038 18.4738 0.196858 17.5568 0.581505C16.6398 0.966151 15.8089 1.53 15.1127 2.24L14.0027 3.36L12.8927 2.24C12.1957 1.53129 11.3645 0.968412 10.4477 0.584193C9.53089 0.199974 8.54677 0.00209743 7.5527 0.00209743C6.55864 0.00209743 5.57452 0.199974 4.65772 0.584193C3.74091 0.968412 2.90976 1.53129 2.2127 2.24C0.794583 3.68363 0 5.62636 0 7.65C0 9.67364 0.794583 11.6164 2.2127 13.06L14.0027 25L25.7927 13.06C27.2108 11.6164 28.0054 9.67364 28.0054 7.65C28.0054 5.62636 27.2108 3.68363 25.7927 2.24C25.0958 1.53091 24.2648 0.967646 23.3479 0.583064C22.4311 0.198482 21.4469 0.000276098 20.4527 2.68285e-06Z" fill="#748495"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,3 @@
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.20833 24.6873C4.63542 24.6873 4.14479 24.4832 3.73646 24.0748C3.32882 23.6672 3.125 23.1769 3.125 22.604V8.02067C3.125 7.44775 3.32882 6.95713 3.73646 6.5488C4.14479 6.14116 4.63542 5.93734 5.20833 5.93734H14.5052L12.4219 8.02067H5.20833V22.604H19.7917V15.3644L21.875 13.2811V22.604C21.875 23.1769 21.6712 23.6672 21.2635 24.0748C20.8552 24.4832 20.3646 24.6873 19.7917 24.6873H5.20833ZM16.849 6.5363L18.3333 7.99463L11.4583 14.8696V16.354H12.9167L19.8177 9.45296L21.3021 10.9113L14.401 17.8123C14.2101 18.0033 13.9889 18.1554 13.7375 18.2686C13.4854 18.3811 13.2205 18.4373 12.9427 18.4373H10.4167C10.1215 18.4373 9.87431 18.3377 9.675 18.1384C9.475 17.9384 9.375 17.6908 9.375 17.3957V14.8696C9.375 14.5919 9.42708 14.3269 9.53125 14.0748C9.63542 13.8234 9.78299 13.6023 9.97396 13.4113L16.849 6.5363ZM21.3021 10.9113L16.849 6.5363L19.4531 3.93213C19.8698 3.51546 20.3691 3.30713 20.951 3.30713C21.5323 3.30713 22.0226 3.51546 22.4219 3.93213L23.8802 5.4165C24.2795 5.81581 24.4792 6.30192 24.4792 6.87484C24.4792 7.44775 24.2795 7.93387 23.8802 8.33317L21.3021 10.9113Z" fill="#748495"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,3 @@
<svg width="23" height="20" viewBox="0 0 23 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.709 0.160103C11.5759 0.0563472 11.412 0 11.2433 0C11.0745 0 10.9106 0.0563472 10.7775 0.160103L0 8.56385L0.93225 9.74285L2.25 8.71535V17.9996C2.25079 18.3972 2.40908 18.7783 2.69022 19.0594C2.97135 19.3405 3.35242 19.4988 3.75 19.4996H18.75C19.1476 19.4988 19.5287 19.3405 19.8098 19.0594C20.0909 18.7783 20.2492 18.3972 20.25 17.9996V8.7221L21.5677 9.7496L22.5 8.5706L11.709 0.160103ZM12.75 17.9996H9.75V11.9996H12.75V17.9996ZM14.25 17.9996V11.9996C14.2496 11.6019 14.0914 11.2206 13.8102 10.9394C13.529 10.6582 13.1477 10.5 12.75 10.4996H9.75C9.3523 10.5 8.971 10.6582 8.68978 10.9394C8.40856 11.2206 8.2504 11.6019 8.25 11.9996V17.9996H3.75V7.5461L11.25 1.7036L18.75 7.5536V17.9996H14.25Z" fill="#748495"/>
</svg>

After

Width:  |  Height:  |  Size: 826 B

View File

@ -0,0 +1,5 @@
<svg width="29" height="30" viewBox="0 0 29 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.5" width="29" height="29" rx="14.5" fill="#F29D38"/>
<path d="M13 20.5C13 20.6978 12.9414 20.8911 12.8315 21.0556C12.7216 21.22 12.5654 21.3482 12.3827 21.4239C12.2 21.4996 11.9989 21.5194 11.8049 21.4808C11.6109 21.4422 11.4327 21.347 11.2929 21.2071C11.153 21.0673 11.0578 20.8891 11.0192 20.6951C10.9806 20.5011 11.0004 20.3 11.0761 20.1173C11.1518 19.9346 11.28 19.7784 11.4444 19.6685C11.6089 19.5586 11.8022 19.5 12 19.5C12.2652 19.5 12.5196 19.6054 12.7071 19.7929C12.8946 19.9804 13 20.2348 13 20.5ZM18.5 19.5C18.3022 19.5 18.1089 19.5586 17.9444 19.6685C17.78 19.7784 17.6518 19.9346 17.5761 20.1173C17.5004 20.3 17.4806 20.5011 17.5192 20.6951C17.5578 20.8891 17.653 21.0673 17.7929 21.2071C17.9327 21.347 18.1109 21.4422 18.3049 21.4808C18.4989 21.5194 18.7 21.4996 18.8827 21.4239C19.0654 21.3482 19.2216 21.22 19.3315 21.0556C19.4413 20.8911 19.5 20.6978 19.5 20.5C19.5 20.2348 19.3946 19.9804 19.2071 19.7929C19.0196 19.6054 18.7652 19.5 18.5 19.5ZM21.3375 11.6375L19.6875 17.4125C19.5969 17.7256 19.4072 18.0008 19.1469 18.1969C18.8866 18.393 18.5697 18.4993 18.2437 18.5H12.2562C11.9303 18.4993 11.6134 18.393 11.3531 18.1969C11.0928 18.0008 10.9031 17.7256 10.8125 17.4125L9.1625 11.6438V11.6312L8.55 9.5H7.5C7.36739 9.5 7.24021 9.44732 7.14645 9.35355C7.05268 9.25979 7 9.13261 7 9C7 8.86739 7.05268 8.74021 7.14645 8.64645C7.24021 8.55268 7.36739 8.5 7.5 8.5H8.55C8.76719 8.50079 8.97829 8.57182 9.15177 8.7025C9.32525 8.83317 9.4518 9.01647 9.5125 9.225L10.0187 11H20.8562C20.9337 10.9999 21.0101 11.0178 21.0794 11.0523C21.1488 11.0868 21.2092 11.1369 21.2558 11.1987C21.3025 11.2606 21.3342 11.3324 21.3483 11.4085C21.3625 11.4846 21.3588 11.563 21.3375 11.6375ZM20.1937 12H10.3062L11.775 17.1375C11.8049 17.242 11.8681 17.334 11.9549 17.3994C12.0417 17.4648 12.1475 17.5001 12.2562 17.5H18.2437C18.3525 17.5001 18.4583 17.4648 18.5451 17.3994C18.6319 17.334 18.6951 17.242 18.725 17.1375L20.1937 12Z" fill="white"/>
<path d="M14.936 10V6.4H15.792V10H14.936ZM13.52 8.6V7.8H17.208V8.6H13.52Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,5 @@
<svg width="29" height="30" viewBox="0 0 29 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="1" width="28" height="28" rx="14" fill="white" stroke="#F29D38"/>
<path d="M13 20.5C13 20.6978 12.9414 20.8911 12.8315 21.0556C12.7216 21.22 12.5654 21.3482 12.3827 21.4239C12.2 21.4996 11.9989 21.5194 11.8049 21.4808C11.6109 21.4422 11.4327 21.347 11.2929 21.2071C11.153 21.0673 11.0578 20.8891 11.0192 20.6951C10.9806 20.5011 11.0004 20.3 11.0761 20.1173C11.1518 19.9346 11.28 19.7784 11.4444 19.6685C11.6089 19.5586 11.8022 19.5 12 19.5C12.2652 19.5 12.5196 19.6054 12.7071 19.7929C12.8946 19.9804 13 20.2348 13 20.5ZM18.5 19.5C18.3022 19.5 18.1089 19.5586 17.9444 19.6685C17.78 19.7784 17.6518 19.9346 17.5761 20.1173C17.5004 20.3 17.4806 20.5011 17.5192 20.6951C17.5578 20.8891 17.653 21.0673 17.7929 21.2071C17.9327 21.347 18.1109 21.4422 18.3049 21.4808C18.4989 21.5194 18.7 21.4996 18.8827 21.4239C19.0654 21.3482 19.2216 21.22 19.3315 21.0556C19.4413 20.8911 19.5 20.6978 19.5 20.5C19.5 20.2348 19.3946 19.9804 19.2071 19.7929C19.0196 19.6054 18.7652 19.5 18.5 19.5ZM21.3375 11.6375L19.6875 17.4125C19.5969 17.7256 19.4072 18.0008 19.1469 18.1969C18.8866 18.393 18.5697 18.4993 18.2437 18.5H12.2562C11.9303 18.4993 11.6134 18.393 11.3531 18.1969C11.0928 18.0008 10.9031 17.7256 10.8125 17.4125L9.1625 11.6438V11.6312L8.55 9.5H7.5C7.36739 9.5 7.24021 9.44732 7.14645 9.35355C7.05268 9.25979 7 9.13261 7 9C7 8.86739 7.05268 8.74021 7.14645 8.64645C7.24021 8.55268 7.36739 8.5 7.5 8.5H8.55C8.76719 8.50079 8.97829 8.57182 9.15177 8.7025C9.32525 8.83317 9.4518 9.01647 9.5125 9.225L10.0187 11H20.8562C20.9337 10.9999 21.0101 11.0178 21.0794 11.0523C21.1488 11.0868 21.2092 11.1369 21.2558 11.1987C21.3025 11.2606 21.3342 11.3324 21.3483 11.4085C21.3625 11.4846 21.3588 11.563 21.3375 11.6375ZM20.1937 12H10.3062L11.775 17.1375C11.8049 17.242 11.8681 17.334 11.9549 17.3994C12.0417 17.4648 12.1475 17.5001 12.2562 17.5H18.2437C18.3525 17.5001 18.4583 17.4648 18.5451 17.3994C18.6319 17.334 18.6951 17.242 18.725 17.1375L20.1937 12Z" fill="#F29D38"/>
<path d="M17.208 8.6H15.792V10H14.936V8.6H13.52V7.8H14.936V6.4H15.792V7.8H17.208V8.6Z" fill="#F29D38"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,3 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 1.25C7.40625 1.25 1.25 7.40625 1.25 15C1.25 22.5938 7.40625 28.75 15 28.75C22.5938 28.75 28.75 22.5938 28.75 15C28.75 7.40625 22.5938 1.25 15 1.25ZM19.6337 12.1337C19.8614 11.898 19.9874 11.5822 19.9846 11.2545C19.9817 10.9268 19.8503 10.6132 19.6185 10.3815C19.3868 10.1497 19.0732 10.0183 18.7455 10.0154C18.4178 10.0126 18.102 10.1386 17.8663 10.3663L15 13.2325L12.1337 10.3663C12.0184 10.2469 11.8805 10.1516 11.728 10.0861C11.5755 10.0206 11.4115 9.98613 11.2455 9.98469C11.0795 9.98324 10.9149 10.0149 10.7613 10.0777C10.6077 10.1406 10.4681 10.2334 10.3508 10.3508C10.2334 10.4681 10.1406 10.6077 10.0777 10.7613C10.0149 10.9149 9.98324 11.0795 9.98469 11.2455C9.98613 11.4115 10.0206 11.5755 10.0861 11.728C10.1516 11.8805 10.2469 12.0184 10.3663 12.1337L13.2325 15L10.3663 17.8663C10.2469 17.9816 10.1516 18.1195 10.0861 18.272C10.0206 18.4245 9.98613 18.5885 9.98469 18.7545C9.98324 18.9205 10.0149 19.0851 10.0777 19.2387C10.1406 19.3923 10.2334 19.5319 10.3508 19.6492C10.4681 19.7666 10.6077 19.8594 10.7613 19.9223C10.9149 19.9851 11.0795 20.0168 11.2455 20.0153C11.4115 20.0139 11.5755 19.9794 11.728 19.9139C11.8805 19.8484 12.0184 19.7531 12.1337 19.6337L15 16.7675L17.8663 19.6337C18.102 19.8614 18.4178 19.9874 18.7455 19.9846C19.0732 19.9817 19.3868 19.8503 19.6185 19.6185C19.8503 19.3868 19.9817 19.0732 19.9846 18.7455C19.9874 18.4178 19.8614 18.102 19.6337 17.8663L16.7675 15L19.6337 12.1337Z" fill="#FF0047"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,4 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15 22.5H12.75C12.3523 22.4996 11.971 22.3414 11.6898 22.0602C11.4086 21.779 11.2504 21.3977 11.25 21V17.25H12.75V21H15V17.25H16.5V14.25C16.4998 14.0512 16.4207 13.8605 16.2801 13.7199C16.1395 13.5793 15.9489 13.5002 15.75 13.5H9.21L7.71 9H3C2.80115 9.0002 2.6105 9.07928 2.46989 9.21989C2.32928 9.3605 2.2502 9.55115 2.25 9.75V14.25H3.75V21H6.75V15.75H8.25V21C8.2496 21.3977 8.09144 21.779 7.81022 22.0602C7.529 22.3414 7.1477 22.4996 6.75 22.5H3.75C3.3523 22.4996 2.971 22.3414 2.68978 22.0602C2.40856 21.779 2.2504 21.3977 2.25 21V15.75C1.8523 15.7496 1.471 15.5914 1.18978 15.3102C0.90856 15.029 0.750397 14.6477 0.75 14.25V9.75C0.750596 9.15345 0.98784 8.5815 1.40967 8.15967C1.8315 7.73784 2.40345 7.5006 3 7.5H7.71C8.02478 7.4998 8.33163 7.59874 8.58701 7.78277C8.84239 7.9668 9.03334 8.22658 9.13275 8.52525L10.29 12H15.75C16.3466 12.0006 16.9185 12.2378 17.3403 12.6597C17.7622 13.0815 17.9994 13.6534 18 14.25V17.25C17.9996 17.6477 17.8414 18.029 17.5602 18.3102C17.279 18.5914 16.8977 18.7496 16.5 18.75V21C16.4996 21.3977 16.3414 21.779 16.0602 22.0602C15.779 22.3414 15.3977 22.4996 15 22.5ZM21 22.5H19.5V14.25H21.75V9.75C21.7498 9.55115 21.6707 9.3605 21.5301 9.21989C21.3895 9.07928 21.1989 9.0002 21 9H18V7.5H21C21.5966 7.5006 22.1685 7.73784 22.5903 8.15967C23.0122 8.5815 23.2494 9.15345 23.25 9.75V14.25C23.2496 14.6477 23.0914 15.029 22.8102 15.3102C22.529 15.5914 22.1477 15.7496 21.75 15.75H21V22.5ZM5.25 6.75C4.65666 6.75 4.07664 6.57405 3.58329 6.24441C3.08994 5.91477 2.70542 5.44623 2.47836 4.89805C2.2513 4.34987 2.19189 3.74667 2.30764 3.16473C2.4234 2.58279 2.70912 2.04824 3.12868 1.62868C3.54824 1.20912 4.08279 0.923401 4.66473 0.807646C5.24667 0.69189 5.84987 0.7513 6.39805 0.978363C6.94623 1.20543 7.41476 1.58994 7.74441 2.08329C8.07405 2.57664 8.25 3.15666 8.25 3.75C8.24901 4.54535 7.93262 5.30783 7.37022 5.87023C6.80783 6.43262 6.04534 6.74901 5.25 6.75ZM5.25 2.25C4.95333 2.25 4.66332 2.33797 4.41664 2.5028C4.16997 2.66762 3.97771 2.90189 3.86418 3.17598C3.75065 3.45007 3.72094 3.75167 3.77882 4.04264C3.8367 4.33361 3.97956 4.60088 4.18934 4.81066C4.39912 5.02044 4.66639 5.1633 4.95736 5.22118C5.24834 5.27906 5.54994 5.24935 5.82403 5.13582C6.09811 5.02229 6.33238 4.83003 6.4972 4.58336C6.66203 4.33668 6.75 4.04667 6.75 3.75C6.7496 3.3523 6.59144 2.971 6.31022 2.68978C6.029 2.40856 5.6477 2.2504 5.25 2.25ZM18.75 6.75C18.1567 6.75 17.5766 6.57405 17.0833 6.24441C16.5899 5.91477 16.2054 5.44623 15.9784 4.89805C15.7513 4.34987 15.6919 3.74667 15.8076 3.16473C15.9234 2.58279 16.2091 2.04824 16.6287 1.62868C17.0482 1.20912 17.5828 0.923401 18.1647 0.807646C18.7467 0.69189 19.3499 0.7513 19.8981 0.978363C20.4462 1.20543 20.9148 1.58994 21.2444 2.08329C21.5741 2.57664 21.75 3.15666 21.75 3.75C21.749 4.54535 21.4326 5.30783 20.8702 5.87023C20.3078 6.43262 19.5453 6.74901 18.75 6.75ZM18.75 2.25C18.4533 2.25 18.1633 2.33797 17.9166 2.5028C17.67 2.66762 17.4777 2.90189 17.3642 3.17598C17.2506 3.45007 17.2209 3.75167 17.2788 4.04264C17.3367 4.33361 17.4796 4.60088 17.6893 4.81066C17.8991 5.02044 18.1664 5.1633 18.4574 5.22118C18.7483 5.27906 19.0499 5.24935 19.324 5.13582C19.5981 5.02229 19.8324 4.83003 19.9972 4.58336C20.162 4.33668 20.25 4.04667 20.25 3.75C20.2496 3.3523 20.0914 2.971 19.8102 2.68978C19.529 2.40856 19.1477 2.2504 18.75 2.25Z" fill="#F29D38"/>
<path d="M13.875 11.25C13.3558 11.25 12.8483 11.096 12.4166 10.8076C11.985 10.5192 11.6485 10.1092 11.4498 9.62955C11.2511 9.14989 11.1992 8.62209 11.3004 8.11289C11.4017 7.60369 11.6517 7.13596 12.0188 6.76885C12.386 6.40173 12.8537 6.15173 13.3629 6.05044C13.8721 5.94915 14.3999 6.00114 14.8795 6.19982C15.3592 6.3985 15.7692 6.73495 16.0576 7.16663C16.346 7.59831 16.5 8.10583 16.5 8.625C16.4992 9.32095 16.2224 9.98817 15.7303 10.4803C15.2382 10.9724 14.571 11.2492 13.875 11.25ZM13.875 7.5C13.6525 7.5 13.435 7.56598 13.25 7.6896C13.065 7.81321 12.9208 7.98892 12.8356 8.19448C12.7505 8.40005 12.7282 8.62625 12.7716 8.84448C12.815 9.06271 12.9222 9.26316 13.0795 9.4205C13.2368 9.57783 13.4373 9.68498 13.6555 9.72838C13.8738 9.77179 14.1 9.74951 14.3055 9.66437C14.5111 9.57922 14.6868 9.43502 14.8104 9.25002C14.934 9.06501 15 8.84751 15 8.625C14.9996 8.32675 14.881 8.04084 14.6701 7.82994C14.4592 7.61905 14.1732 7.5004 13.875 7.5Z" fill="#F29D38"/>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,3 @@
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.8333 22.9168H4.16667C3.8904 22.9168 3.62545 22.8071 3.4301 22.6117C3.23475 22.4164 3.125 22.1514 3.125 21.8752V3.12516C3.125 2.8489 3.23475 2.58394 3.4301 2.38859C3.62545 2.19324 3.8904 2.0835 4.16667 2.0835H20.8333C21.1096 2.0835 21.3746 2.19324 21.5699 2.38859C21.7653 2.58394 21.875 2.8489 21.875 3.12516V21.8752C21.875 22.1514 21.7653 22.4164 21.5699 22.6117C21.3746 22.8071 21.1096 22.9168 20.8333 22.9168ZM7.29167 4.16683H5.20833V20.8335H19.7917V4.16683H14.5833V13.5418L10.9375 11.4585L7.29167 13.5418V4.16683Z" fill="#748495"/>
</svg>

After

Width:  |  Height:  |  Size: 651 B

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M24 11.988C24 5.37 18.624 0 12 0C5.376 0 0 5.37 0 11.988C0 15.633 1.656 18.918 4.248 21.123C4.272 21.147 4.296 21.147 4.296 21.171C4.512 21.339 4.728 21.507 4.968 21.675C5.088 21.747 5.184 21.8415 5.304 21.9375C7.2871 23.282 9.62806 24.0005 12.024 24C14.4199 24.0005 16.7609 23.282 18.744 21.9375C18.864 21.8655 18.96 21.771 19.08 21.6975C19.296 21.531 19.536 21.363 19.752 21.195C19.776 21.171 19.8 21.171 19.8 21.147C22.344 18.9165 24 15.633 24 11.988V11.988ZM12 22.4895C9.744 22.4895 7.68 21.7695 5.976 20.571C6 20.379 6.048 20.1885 6.096 19.9965C6.23901 19.4762 6.44875 18.9765 6.72 18.51C6.984 18.054 7.296 17.646 7.68 17.286C8.04 16.926 8.472 16.5915 8.904 16.3275C9.36 16.0635 9.84 15.8715 10.368 15.7275C10.9001 15.5841 11.4489 15.5119 12 15.513C13.636 15.5014 15.2118 16.129 16.392 17.262C16.944 17.814 17.376 18.462 17.688 19.2045C17.856 19.6365 17.976 20.0925 18.048 20.571C16.2768 21.8162 14.1652 22.4861 12 22.4895ZM8.328 11.3895C8.11653 10.9053 8.01019 10.3818 8.016 9.8535C8.016 9.327 8.112 8.799 8.328 8.319C8.544 7.839 8.832 7.4085 9.192 7.0485C9.552 6.6885 9.984 6.402 10.464 6.186C10.944 5.97 11.472 5.874 12 5.874C12.552 5.874 13.056 5.97 13.536 6.186C14.016 6.402 14.448 6.69 14.808 7.0485C15.168 7.4085 15.456 7.8405 15.672 8.319C15.888 8.799 15.984 9.327 15.984 9.8535C15.984 10.4055 15.888 10.9095 15.672 11.388C15.4635 11.8609 15.1708 12.2919 14.808 12.66C14.4398 13.0222 14.0088 13.3145 13.536 13.5225C12.5442 13.9301 11.4318 13.9301 10.44 13.5225C9.96722 13.3145 9.53621 13.0222 9.168 12.66C8.80472 12.2973 8.51894 11.8645 8.328 11.388V11.3895ZM19.464 19.3485C19.464 19.3005 19.44 19.2765 19.44 19.2285C19.204 18.4776 18.856 17.7666 18.408 17.1195C17.9595 16.4676 17.4084 15.8926 16.776 15.417C16.293 15.0537 15.7695 14.7476 15.216 14.505C15.4678 14.3389 15.7012 14.1463 15.912 13.9305C16.2698 13.5773 16.584 13.1824 16.848 12.7545C17.3795 11.8812 17.654 10.8757 17.64 9.8535C17.6474 9.09677 17.5004 8.34648 17.208 7.6485C16.9193 6.97596 16.5037 6.36533 15.984 5.85C15.4651 5.34005 14.8543 4.93289 14.184 4.65C13.4849 4.35809 12.7336 4.21161 11.976 4.2195C11.2183 4.21209 10.467 4.35908 9.768 4.6515C9.09188 4.93378 8.47966 5.34958 7.968 5.874C7.45806 6.39238 7.05089 7.00263 6.768 7.6725C6.47557 8.37048 6.32858 9.12077 6.336 9.8775C6.336 10.4055 6.408 10.9095 6.552 11.388C6.696 11.892 6.888 12.348 7.152 12.7785C7.392 13.2105 7.728 13.5945 8.088 13.9545C8.304 14.1705 8.544 14.361 8.808 14.529C8.25275 14.7781 7.72908 15.0923 7.248 15.465C6.624 15.945 6.072 16.5195 5.616 17.1435C5.16339 17.7879 4.81512 18.4997 4.584 19.2525C4.56 19.3005 4.56 19.3485 4.56 19.3725C2.664 17.454 1.488 14.865 1.488 11.988C1.488 6.21 6.216 1.4865 12 1.4865C17.784 1.4865 22.512 6.21 22.512 11.988C22.5089 14.7479 21.413 17.3943 19.464 19.3485V19.3485Z" fill="#748495"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,4 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 2H18C20.2091 2 22 3.79086 22 6V18C22 20.2091 20.2091 22 18 22H6C3.79086 22 2 20.2091 2 18V6C2 3.79086 3.79086 2 6 2Z" fill="#F29D38"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.3591 9.70172C15.652 9.40882 15.652 8.93395 15.3591 8.64106C15.0662 8.34816 14.5913 8.34816 14.2984 8.64106L12.0004 10.9391L9.70234 8.64107C9.40944 8.34818 8.93457 8.34818 8.64168 8.64107C8.34878 8.93396 8.34878 9.40884 8.64168 9.70173L10.9397 11.9998L8.64155 14.2979C8.34865 14.5908 8.34865 15.0657 8.64155 15.3586C8.93444 15.6515 9.40931 15.6515 9.70221 15.3586L12.0004 13.0604L14.2985 15.3586C14.5914 15.6515 15.0663 15.6515 15.3592 15.3586C15.6521 15.0657 15.6521 14.5908 15.3592 14.2979L13.061 11.9998L15.3591 9.70172Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 842 B

View File

@ -0,0 +1,3 @@
<svg width="30" height="25" viewBox="0 0 30 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.3125 4.6875V0.9375C10.3125 0.68886 10.4113 0.450403 10.5871 0.274587C10.7629 0.098772 11.0014 0 11.25 0C11.4986 0 11.7371 0.098772 11.9129 0.274587C12.0887 0.450403 12.1875 0.68886 12.1875 0.9375V4.6875C12.1875 4.93614 12.0887 5.1746 11.9129 5.35041C11.7371 5.52623 11.4986 5.625 11.25 5.625C11.0014 5.625 10.7629 5.52623 10.5871 5.35041C10.4113 5.1746 10.3125 4.93614 10.3125 4.6875ZM15 5.625C15.2486 5.625 15.4871 5.52623 15.6629 5.35041C15.8387 5.1746 15.9375 4.93614 15.9375 4.6875V0.9375C15.9375 0.68886 15.8387 0.450403 15.6629 0.274587C15.4871 0.098772 15.2486 0 15 0C14.7514 0 14.5129 0.098772 14.3371 0.274587C14.1613 0.450403 14.0625 0.68886 14.0625 0.9375V4.6875C14.0625 4.93614 14.1613 5.1746 14.3371 5.35041C14.5129 5.52623 14.7514 5.625 15 5.625ZM18.75 5.625C18.9986 5.625 19.2371 5.52623 19.4129 5.35041C19.5887 5.1746 19.6875 4.93614 19.6875 4.6875V0.9375C19.6875 0.68886 19.5887 0.450403 19.4129 0.274587C19.2371 0.098772 18.9986 0 18.75 0C18.5014 0 18.2629 0.098772 18.0871 0.274587C17.9113 0.450403 17.8125 0.68886 17.8125 0.9375V4.6875C17.8125 4.93614 17.9113 5.1746 18.0871 5.35041C18.2629 5.52623 18.5014 5.625 18.75 5.625ZM29.625 11.0625L26.25 13.5938V20.625C26.2469 21.6186 25.8508 22.5706 25.1482 23.2732C24.4456 23.9758 23.4936 24.3719 22.5 24.375H7.5C6.50639 24.3719 5.55436 23.9758 4.85177 23.2732C4.14918 22.5706 3.75309 21.6186 3.75 20.625V13.5938L0.375004 11.0625C0.176091 10.9133 0.0445892 10.6912 0.00942618 10.4451C-0.0257369 10.1989 0.0383196 9.94891 0.187504 9.75C0.336688 9.55109 0.55878 9.41959 0.804921 9.38442C1.05106 9.34926 1.30109 9.41332 1.5 9.5625L3.75 11.25V9.375C3.75 8.87772 3.94755 8.40081 4.29918 8.04918C4.65081 7.69754 5.12772 7.5 5.625 7.5H24.375C24.8723 7.5 25.3492 7.69754 25.7008 8.04918C26.0525 8.40081 26.25 8.87772 26.25 9.375V11.25L28.5 9.5625C28.6989 9.41332 28.9489 9.34926 29.1951 9.38442C29.4412 9.41959 29.6633 9.55109 29.8125 9.75C29.9617 9.94891 30.0257 10.1989 29.9906 10.4451C29.9554 10.6912 29.8239 10.9133 29.625 11.0625ZM24.375 9.375H5.625V20.625C5.625 21.1223 5.82255 21.5992 6.17418 21.9508C6.52581 22.3025 7.00272 22.5 7.5 22.5H22.5C22.9973 22.5 23.4742 22.3025 23.8258 21.9508C24.1775 21.5992 24.375 21.1223 24.375 20.625V9.375Z" fill="#748495"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,3 @@
<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.19264 7.62791C1.19264 11.2242 4.30741 14.1395 8.14969 14.1395C11.992 14.1395 15.1067 11.2242 15.1067 7.62791C15.1067 4.03163 11.992 1.11628 8.14969 1.11628C4.30741 1.11628 1.19264 4.03163 1.19264 7.62791ZM8.14969 15.2558C3.64874 15.2558 0 11.8407 0 7.62791C0 3.41513 3.64874 0 8.14969 0C12.6506 0 16.2994 3.41513 16.2994 7.62791C16.2994 9.53341 15.5529 11.2757 14.3187 12.6126L16.9198 15.0472C17.1527 15.2652 17.1527 15.6186 16.9198 15.8365C16.6869 16.0545 16.3094 16.0545 16.0765 15.8365L13.4754 13.4019C12.047 14.5571 10.1855 15.2558 8.14969 15.2558Z" fill="#BAC0CA"/>
</svg>

After

Width:  |  Height:  |  Size: 726 B

View File

@ -0,0 +1,3 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 1.25C7.40625 1.25 1.25 7.40625 1.25 15C1.25 22.5938 7.40625 28.75 15 28.75C22.5938 28.75 28.75 22.5938 28.75 15C28.75 7.40625 22.5938 1.25 15 1.25ZM20.96 12.675C21.0697 12.5496 21.1533 12.4034 21.2057 12.2452C21.2582 12.087 21.2784 11.9199 21.2653 11.7537C21.2522 11.5876 21.206 11.4257 21.1295 11.2777C21.0529 11.1296 20.9475 10.9984 20.8194 10.8917C20.6914 10.785 20.5433 10.705 20.3839 10.6563C20.2244 10.6077 20.0569 10.5915 19.8911 10.6085C19.7253 10.6256 19.5646 10.6757 19.4184 10.7558C19.2723 10.8359 19.1436 10.9444 19.04 11.075L13.665 17.5238L10.8837 14.7413C10.648 14.5136 10.3322 14.3876 10.0045 14.3904C9.67675 14.3933 9.36324 14.5247 9.13148 14.7565C8.89972 14.9882 8.76826 15.3018 8.76541 15.6295C8.76256 15.9572 8.88855 16.273 9.11625 16.5087L12.8663 20.2588C12.9891 20.3815 13.1361 20.4773 13.298 20.5401C13.4599 20.6028 13.6331 20.6312 13.8066 20.6233C13.9801 20.6154 14.15 20.5715 14.3055 20.4943C14.4611 20.4171 14.5988 20.3084 14.71 20.175L20.96 12.675Z" fill="#08CB56"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,4 @@
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 2C6.986 2 2.5 6.486 2.5 12C2.5 17.514 6.986 22 12.5 22C18.014 22 22.5 17.514 22.5 12C22.5 6.486 18.014 2 12.5 2ZM12.5 20C8.089 20 4.5 16.411 4.5 12C4.5 7.589 8.089 4 12.5 4C16.911 4 20.5 7.589 20.5 12C20.5 16.411 16.911 20 12.5 20Z" fill="#F29D38"/>
<path d="M13.5 7H11.5V12.414L14.793 15.707L16.207 14.293L13.5 11.586V7Z" fill="#F29D38"/>
</svg>

After

Width:  |  Height:  |  Size: 458 B

View File

@ -0,0 +1,3 @@
<svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5873 7.91314L14.7507 6.7497L14.7508 6.74966C14.8304 6.67003 14.8702 6.63021 14.9023 6.59496C15.5957 5.83214 15.5957 4.66726 14.9023 3.90444C14.8702 3.86919 14.8304 3.82937 14.7508 3.74974L14.7507 3.7497C14.6711 3.67004 14.6313 3.63022 14.596 3.59817C13.8332 2.90478 12.6683 2.90478 11.9055 3.59817C11.8702 3.63022 11.8304 3.67004 11.7507 3.7497L10.5697 4.93071C11.283 6.17586 12.3251 7.20981 13.5873 7.91314ZM9.11503 6.38542L4.35713 11.1433C3.93207 11.5684 3.71954 11.7809 3.5798 12.042C3.44007 12.3031 3.38112 12.5978 3.26323 13.1873L2.89784 15.0143C2.83131 15.3469 2.79805 15.5132 2.89266 15.6078C2.98727 15.7024 3.15357 15.6691 3.48618 15.6026L5.31317 15.2372L5.31317 15.2372C5.90262 15.1193 6.19735 15.0604 6.45844 14.9206C6.71953 14.7809 6.93206 14.5684 7.35711 14.1433L7.35712 14.1433L7.35713 14.1433L12.1288 9.37163C10.9178 8.60339 9.89042 7.58288 9.11503 6.38542Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 305 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 371 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 435 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 973 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

34
easycook_mobile/ios/.gitignore vendored Normal file
View 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

View 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>11.0</string>
</dict>
</plist>

View File

@ -0,0 +1 @@
#include "Generated.xcconfig"

View File

@ -0,0 +1 @@
#include "Generated.xcconfig"

View File

@ -0,0 +1,483 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 54;
objects = {
/* Begin PBXBuildFile section */
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
/* End PBXBuildFile 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>"; };
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 */
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 */,
);
sourceTree = "<group>";
};
97C146EF1CF9000F007C117D /* Products */ = {
isa = PBXGroup;
children = (
97C146EE1CF9000F007C117D /* Runner.app */,
);
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 */
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 = {
LastUpgradeCheck = 1300;
ORGANIZATIONNAME = "";
TargetAttributes = {
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 */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
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 = (
);
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 */
97C146EA1CF9000F007C117D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase 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;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Profile;
};
249021D4217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.easycookMobile;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Profile;
};
97C147031CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
97C147041CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.easycookMobile;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
97C147071CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.easycookMobile;
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 */
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 */;
}

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "self:">
</FileRef>
</Workspace>

View File

@ -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>

View File

@ -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>

View File

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</MacroExpansion>
<Testables>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Profile"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
</Workspace>

View File

@ -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>

View File

@ -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>

View File

@ -0,0 +1,13 @@
import UIKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}

View File

@ -0,0 +1,122 @@
{
"images" : [
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@3x.png",
"scale" : "3x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@3x.png",
"scale" : "3x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@3x.png",
"scale" : "3x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@2x.png",
"scale" : "2x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@3x.png",
"scale" : "3x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@1x.png",
"scale" : "1x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@1x.png",
"scale" : "1x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@1x.png",
"scale" : "1x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@2x.png",
"scale" : "2x"
},
{
"size" : "83.5x83.5",
"idiom" : "ipad",
"filename" : "Icon-App-83.5x83.5@2x.png",
"scale" : "2x"
},
{
"size" : "1024x1024",
"idiom" : "ios-marketing",
"filename" : "Icon-App-1024x1024@1x.png",
"scale" : "1x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Some files were not shown because too many files have changed in this diff Show More