Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
noobcoder17 committed Apr 7, 2020
1 parent 9696a0c commit 6cd3ec9
Show file tree
Hide file tree
Showing 380 changed files with 4,630 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .gitignore
@@ -0,0 +1,37 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
**/doc/api/
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/

# Web related
lib/generated_plugin_registrant.dart

# Exceptions to above rules.
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
10 changes: 10 additions & 0 deletions .metadata
@@ -0,0 +1,10 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.

version:
revision: 0b8abb4724aa590dd0f429683339b1e045a1594d
channel: stable

project_type: app
28 changes: 28 additions & 0 deletions README.md
@@ -0,0 +1,28 @@
<h1 align="center">
<img src="readme/icon.png" width="250" />
<br>⭐ COVID-19 ⭐<br>
</h1>
<h4 align="center">
<sub>Built with ❤︎ by
<a href="https://github.com/noobcoder17">Akash Debnath</a>
</h4>
<p>This project is made using Flutter framework.In this app you can check the daily count of covid-19 cases of every country.They are shown in a form of 3 graphs, confirmed, recovered and death cases. The api used to get the data can be found <a href="https://covid19api.com/">here</a></p>

<br>
<p>The UI is taken from <a href="https://dribbble.com/shots/10847147-Coronavirus-Covid-19-Dashboard">Dribbble</a></p>


<p align='center'>
<img src="readme/home.png" width="250" />
<img src="readme/confirmed.png" width="250" />
<img src="readme/symptoms.png" width="250" />
</p>
<p align='center'>
<img src="readme/all.png" width="250" />
<img src="readme/deaths.png" width="250" />
<img src="readme/search.png" width="250" />
</p>
<p align='center'>
<img src="readme/prevnention.png" width="250" />
<img src="readme/credit.png" width="250" />
</p>
7 changes: 7 additions & 0 deletions android/.gitignore
@@ -0,0 +1,7 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
67 changes: 67 additions & 0 deletions android/app/build.gradle
@@ -0,0 +1,67 @@
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 28

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}

lintOptions {
disable 'InvalidPackage'
}

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.corona_virus"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

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"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}
7 changes: 7 additions & 0 deletions android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.corona_virus">
<!-- Flutter 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>
30 changes: 30 additions & 0 deletions android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,30 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.corona_virus">
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="COVID-19"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
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">
<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>
@@ -0,0 +1,12 @@
package com.example.corona_virus

import androidx.annotation.NonNull;
import io.flutter.embedding.android.FlutterActivity
import io.flutter.embedding.engine.FlutterEngine
import io.flutter.plugins.GeneratedPluginRegistrant

class MainActivity: FlutterActivity() {
override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) {
GeneratedPluginRegistrant.registerWith(flutterEngine);
}
}
12 changes: 12 additions & 0 deletions android/app/src/main/res/drawable/launch_background.xml
@@ -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>
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions android/app/src/main/res/values/styles.xml
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
Flutter draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
</resources>
7 changes: 7 additions & 0 deletions android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.corona_virus">
<!-- Flutter 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>
31 changes: 31 additions & 0 deletions android/build.gradle
@@ -0,0 +1,31 @@
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

allprojects {
repositories {
google()
jcenter()
}
}

rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
delete rootProject.buildDir
}
4 changes: 4 additions & 0 deletions android/gradle.properties
@@ -0,0 +1,4 @@
org.gradle.jvmargs=-Xmx1536M
android.enableR8=true
android.useAndroidX=true
android.enableJetifier=true
6 changes: 6 additions & 0 deletions android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
#Fri Jun 23 08:50:38 CEST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip
15 changes: 15 additions & 0 deletions android/settings.gradle
@@ -0,0 +1,15 @@
include ':app'

def flutterProjectRoot = rootProject.projectDir.parentFile.toPath()

def plugins = new Properties()
def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins')
if (pluginsFile.exists()) {
pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) }
}

plugins.each { name, path ->
def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile()
include ":$name"
project(":$name").projectDir = pluginDirectory
}
Binary file added assets/corona_virus.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/ad.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/ae.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/af.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/ag.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/ai.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/al.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/am.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/an.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/ao.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/aq.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/ar.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/as.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/at.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/au.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/aw.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/ax.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/az.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/ba.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/bb.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/flags/bd.png
Binary file added assets/flags/be.png
Binary file added assets/flags/bf.png
Binary file added assets/flags/bg.png
Binary file added assets/flags/bh.png
Binary file added assets/flags/bi.png
Binary file added assets/flags/bj.png
Binary file added assets/flags/bl.png
Binary file added assets/flags/bm.png
Binary file added assets/flags/bn.png
Binary file added assets/flags/bo.png
Binary file added assets/flags/bq.png
Binary file added assets/flags/br.png
Binary file added assets/flags/bs.png
Binary file added assets/flags/bt.png
Binary file added assets/flags/bv.png
Binary file added assets/flags/bw.png
Binary file added assets/flags/by.png
Binary file added assets/flags/bz.png
Binary file added assets/flags/ca.png
Binary file added assets/flags/cc.png
Binary file added assets/flags/cd.png
Binary file added assets/flags/cf.png
Binary file added assets/flags/cg.png
Binary file added assets/flags/ch.png
Binary file added assets/flags/ci.png
Binary file added assets/flags/ck.png
Binary file added assets/flags/cl.png
Binary file added assets/flags/cm.png
Binary file added assets/flags/cn.png
Binary file added assets/flags/co.png
Binary file added assets/flags/cr.png
Binary file added assets/flags/cu.png
Binary file added assets/flags/cv.png
Binary file added assets/flags/cw.png
Binary file added assets/flags/cx.png
Binary file added assets/flags/cy.png
Binary file added assets/flags/cz.png
Binary file added assets/flags/de.png
Binary file added assets/flags/dj.png
Binary file added assets/flags/dk.png
Binary file added assets/flags/dm.png
Binary file added assets/flags/do.png
Binary file added assets/flags/dz.png
Binary file added assets/flags/ec.png
Binary file added assets/flags/ee.png
Binary file added assets/flags/eg.png
Binary file added assets/flags/eh.png
Binary file added assets/flags/er.png
Binary file added assets/flags/es.png
Binary file added assets/flags/et.png
Binary file added assets/flags/eu.png
Binary file added assets/flags/fi.png
Binary file added assets/flags/fj.png
Binary file added assets/flags/fk.png
Binary file added assets/flags/fm.png
Binary file added assets/flags/fo.png
Binary file added assets/flags/fr.png
Binary file added assets/flags/ga.png
Binary file added assets/flags/gb-eng.png
Binary file added assets/flags/gb-nir.png
Binary file added assets/flags/gb-sct.png
Binary file added assets/flags/gb-wls.png
Binary file added assets/flags/gb.png
Binary file added assets/flags/gd.png
Binary file added assets/flags/ge.png
Binary file added assets/flags/gf.png
Binary file added assets/flags/gg.png
Binary file added assets/flags/gh.png
Binary file added assets/flags/gi.png
Binary file added assets/flags/gl.png
Binary file added assets/flags/gm.png
Binary file added assets/flags/gn.png
Binary file added assets/flags/gp.png
Binary file added assets/flags/gq.png
Binary file added assets/flags/gr.png
Binary file added assets/flags/gs.png
Binary file added assets/flags/gt.png
Binary file added assets/flags/gu.png
Binary file added assets/flags/gw.png
Binary file added assets/flags/gy.png
Binary file added assets/flags/hk.png
Binary file added assets/flags/hm.png
Binary file added assets/flags/hn.png
Binary file added assets/flags/hr.png
Binary file added assets/flags/ht.png
Binary file added assets/flags/hu.png
Binary file added assets/flags/id.png
Binary file added assets/flags/ie.png
Binary file added assets/flags/il.png
Binary file added assets/flags/im.png
Binary file added assets/flags/in.png
Binary file added assets/flags/io.png
Binary file added assets/flags/iq.png
Binary file added assets/flags/ir.png
Binary file added assets/flags/is.png
Binary file added assets/flags/it.png
Binary file added assets/flags/je.png
Binary file added assets/flags/jm.png
Binary file added assets/flags/jo.png
Binary file added assets/flags/jp.png
Binary file added assets/flags/ke.png
Binary file added assets/flags/kg.png
Binary file added assets/flags/kh.png
Binary file added assets/flags/ki.png
Binary file added assets/flags/km.png
Binary file added assets/flags/kn.png
Binary file added assets/flags/kp.png
Binary file added assets/flags/kr.png
Binary file added assets/flags/kw.png
Binary file added assets/flags/ky.png
Binary file added assets/flags/kz.png
Binary file added assets/flags/la.png
Binary file added assets/flags/lb.png
Binary file added assets/flags/lc.png
Binary file added assets/flags/li.png
Binary file added assets/flags/lk.png
Binary file added assets/flags/lr.png
Binary file added assets/flags/ls.png
Binary file added assets/flags/lt.png
Binary file added assets/flags/lu.png
Binary file added assets/flags/lv.png
Binary file added assets/flags/ly.png
Binary file added assets/flags/ma.png
Binary file added assets/flags/mc.png
Binary file added assets/flags/md.png
Binary file added assets/flags/me.png
Binary file added assets/flags/mf.png
Binary file added assets/flags/mg.png
Binary file added assets/flags/mh.png
Binary file added assets/flags/mk.png
Binary file added assets/flags/ml.png
Binary file added assets/flags/mm.png
Binary file added assets/flags/mn.png
Binary file added assets/flags/mo.png
Binary file added assets/flags/mp.png
Binary file added assets/flags/mq.png
Binary file added assets/flags/mr.png
Binary file added assets/flags/ms.png
Binary file added assets/flags/mt.png
Binary file added assets/flags/mu.png
Binary file added assets/flags/mv.png
Binary file added assets/flags/mw.png
Binary file added assets/flags/mx.png
Binary file added assets/flags/my.png
Binary file added assets/flags/mz.png
Binary file added assets/flags/na.png
Binary file added assets/flags/nc.png
Binary file added assets/flags/ne.png
Binary file added assets/flags/nf.png
Binary file added assets/flags/ng.png
Binary file added assets/flags/ni.png
Binary file added assets/flags/nl.png
Binary file added assets/flags/no.png
Binary file added assets/flags/np.png
Binary file added assets/flags/nr.png
Binary file added assets/flags/nu.png
Binary file added assets/flags/nz.png
Binary file added assets/flags/om.png
Binary file added assets/flags/pa.png
Binary file added assets/flags/pe.png
Binary file added assets/flags/pf.png
Binary file added assets/flags/pg.png
Binary file added assets/flags/ph.png
Binary file added assets/flags/pk.png
Binary file added assets/flags/pl.png
Binary file added assets/flags/pm.png
Binary file added assets/flags/pn.png
Binary file added assets/flags/pr.png
Binary file added assets/flags/ps.png
Binary file added assets/flags/pt.png
Binary file added assets/flags/pw.png
Binary file added assets/flags/py.png
Binary file added assets/flags/qa.png
Binary file added assets/flags/re.png
Binary file added assets/flags/ro.png
Binary file added assets/flags/rs.png
Binary file added assets/flags/ru.png
Binary file added assets/flags/rw.png
Binary file added assets/flags/sa.png
Binary file added assets/flags/sb.png
Binary file added assets/flags/sc.png
Binary file added assets/flags/sd.png
Binary file added assets/flags/se.png
Binary file added assets/flags/sg.png
Binary file added assets/flags/sh.png
Binary file added assets/flags/si.png
Binary file added assets/flags/sj.png
Binary file added assets/flags/sk.png
Binary file added assets/flags/sl.png
Binary file added assets/flags/sm.png
Binary file added assets/flags/sn.png
Binary file added assets/flags/so.png
Binary file added assets/flags/sr.png
Binary file added assets/flags/ss.png
Binary file added assets/flags/st.png
Binary file added assets/flags/sv.png
Binary file added assets/flags/sx.png
Binary file added assets/flags/sy.png
Binary file added assets/flags/sz.png
Binary file added assets/flags/tc.png
Binary file added assets/flags/td.png
Binary file added assets/flags/tf.png
Binary file added assets/flags/tg.png
Binary file added assets/flags/th.png
Binary file added assets/flags/tj.png
Binary file added assets/flags/tk.png
Binary file added assets/flags/tl.png
Binary file added assets/flags/tm.png
Binary file added assets/flags/tn.png
Binary file added assets/flags/to.png
Binary file added assets/flags/tr.png
Binary file added assets/flags/tt.png
Binary file added assets/flags/tv.png
Binary file added assets/flags/tw.png
Binary file added assets/flags/tz.png
Binary file added assets/flags/ua.png
Binary file added assets/flags/ug.png
Binary file added assets/flags/um.png
Binary file added assets/flags/us.png
Binary file added assets/flags/uy.png
Binary file added assets/flags/uz.png
Binary file added assets/flags/va.png
Binary file added assets/flags/vc.png
Binary file added assets/flags/ve.png
Binary file added assets/flags/vg.png
Binary file added assets/flags/vi.png
Binary file added assets/flags/vn.png
Binary file added assets/flags/vu.png
Binary file added assets/flags/wf.png
Binary file added assets/flags/ws.png
Binary file added assets/flags/xk.png
Binary file added assets/flags/ye.png
Binary file added assets/flags/yt.png
Binary file added assets/flags/za.png
Binary file added assets/flags/zm.png
Binary file added assets/flags/zw.png
Binary file added assets/github.png
Binary file added assets/icon.png
Binary file added assets/logo.png
Binary file added assets/prevention/avoid_contact.png
Binary file added assets/prevention/cover_cough.png
Binary file added assets/prevention/face_mask.png
Binary file added assets/prevention/wash_hands.png
Binary file added assets/symptoms/cough.png
Binary file added assets/symptoms/headache.png
Binary file added assets/symptoms/high_fever.png
Binary file added assets/symptoms/sore_throat.png
Binary file added assets/symptoms/symptoms.png
Binary file added assets/usa_flag.png
32 changes: 32 additions & 0 deletions ios/.gitignore
@@ -0,0 +1,32 @@
*.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/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 changes: 26 additions & 0 deletions ios/Flutter/AppFrameworkInfo.plist
@@ -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>$(DEVELOPMENT_LANGUAGE)</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>8.0</string>
</dict>
</plist>
1 change: 1 addition & 0 deletions ios/Flutter/Debug.xcconfig
@@ -0,0 +1 @@
#include "Generated.xcconfig"
1 change: 1 addition & 0 deletions ios/Flutter/Release.xcconfig
@@ -0,0 +1 @@
#include "Generated.xcconfig"

0 comments on commit 6cd3ec9

Please sign in to comment.