├── .github
└── FUNDING.yml
├── .gitignore
├── LICENSE
├── README.md
├── landingpage
├── .gitignore
├── .metadata
├── README.md
├── android
│ ├── app
│ │ ├── build.gradle
│ │ ├── google-services.json
│ │ └── src
│ │ │ ├── debug
│ │ │ └── AndroidManifest.xml
│ │ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── kotlin
│ │ │ │ └── org
│ │ │ │ │ └── pcc
│ │ │ │ │ └── landingpage
│ │ │ │ │ └── MainActivity.kt
│ │ │ └── res
│ │ │ │ ├── drawable
│ │ │ │ └── launch_background.xml
│ │ │ │ ├── mipmap-hdpi
│ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-mdpi
│ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xxxhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ │ └── values
│ │ │ │ └── styles.xml
│ │ │ └── profile
│ │ │ └── AndroidManifest.xml
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ └── gradle-wrapper.properties
│ └── settings.gradle
├── assets
│ ├── flutter-to-fly-creds.json
│ ├── fonts
│ │ ├── Fresca-Regular.ttf
│ │ ├── IndieFlower.ttf
│ │ ├── Montserrat-Medium.ttf
│ │ ├── Montserrat-Regular.ttf
│ │ └── Roboto-Regular.ttf
│ └── images
│ │ ├── bird.jpg
│ │ ├── email.png
│ │ ├── flutter_image.jpg
│ │ ├── lego.png
│ │ └── menu.png
├── ios
│ ├── Flutter
│ │ ├── AppFrameworkInfo.plist
│ │ ├── Debug.xcconfig
│ │ ├── Release.xcconfig
│ │ └── flutter_export_environment.sh
│ ├── Podfile
│ ├── Podfile.lock
│ ├── Runner.xcodeproj
│ │ ├── project.pbxproj
│ │ ├── project.xcworkspace
│ │ │ └── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ └── xcschemes
│ │ │ └── Runner.xcscheme
│ ├── Runner.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ └── WorkspaceSettings.xcsettings
│ └── Runner
│ │ ├── AppDelegate.swift
│ │ ├── Assets.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ ├── 100.png
│ │ │ ├── 1024.png
│ │ │ ├── 114.png
│ │ │ ├── 120.png
│ │ │ ├── 128.png
│ │ │ ├── 144.png
│ │ │ ├── 152.png
│ │ │ ├── 16.png
│ │ │ ├── 167.png
│ │ │ ├── 172.png
│ │ │ ├── 180.png
│ │ │ ├── 196.png
│ │ │ ├── 20.png
│ │ │ ├── 216.png
│ │ │ ├── 256.png
│ │ │ ├── 29.png
│ │ │ ├── 32.png
│ │ │ ├── 40.png
│ │ │ ├── 48.png
│ │ │ ├── 50.png
│ │ │ ├── 512.png
│ │ │ ├── 55.png
│ │ │ ├── 57.png
│ │ │ ├── 58.png
│ │ │ ├── 60.png
│ │ │ ├── 64.png
│ │ │ ├── 72.png
│ │ │ ├── 76.png
│ │ │ ├── 80.png
│ │ │ ├── 87.png
│ │ │ ├── 88.png
│ │ │ └── Contents.json
│ │ └── LaunchImage.imageset
│ │ │ ├── Contents.json
│ │ │ ├── LaunchImage.png
│ │ │ ├── LaunchImage@2x.png
│ │ │ ├── LaunchImage@3x.png
│ │ │ └── README.md
│ │ ├── Base.lproj
│ │ ├── LaunchScreen.storyboard
│ │ └── Main.storyboard
│ │ ├── Info.plist
│ │ └── Runner-Bridging-Header.h
├── lib
│ ├── data
│ │ ├── demo_data.dart
│ │ ├── reources.dart
│ │ └── res_list_item.dart
│ ├── home.dart
│ ├── login
│ │ ├── auth_service.dart
│ │ ├── firebase_login.dart
│ │ ├── login_page.dart
│ │ └── user_profile.dart
│ ├── main.dart
│ ├── plugins
│ │ ├── firetop
│ │ │ ├── change_notifier.dart
│ │ │ ├── fire_auth_service.dart
│ │ │ ├── mobile.dart
│ │ │ ├── unsupported.dart
│ │ │ └── web.dart
│ │ └── url_launcher
│ │ │ ├── mobile.dart
│ │ │ ├── unsupported.dart
│ │ │ ├── url_launcher.dart
│ │ │ └── web.dart
│ ├── router.dart
│ ├── rss
│ │ ├── rss_resources.dart
│ │ └── rss_service.dart
│ ├── utils
│ │ ├── display_util.dart
│ │ ├── myColors.dart
│ │ ├── my_platform.dart
│ │ ├── responsive_widget.dart
│ │ ├── strings.dart
│ │ ├── themes.dart
│ │ └── widgets_lib.dart
│ └── widgets
│ │ ├── body.dart
│ │ ├── dialog_flow.dart
│ │ ├── emailBox.dart
│ │ ├── fact_message.dart
│ │ ├── header.dart
│ │ ├── large_screen.dart
│ │ ├── small_screen.dart
│ │ ├── susbcribe_button.dart
│ │ └── webview.dart
├── pubspec.yaml
├── pubspec.yaml.native
├── pubspec.yaml.web
├── test
│ └── widget_test.dart
└── web
│ └── index.html
└── samples.json
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: [ptyagicodecamp] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4 | patreon: # Replace with a single Patreon username
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: # Replace with a single Ko-fi username
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9 | liberapay: # Replace with a single Liberapay username
10 | issuehunt: # Replace with a single IssueHunt username
11 | otechie: # Replace with a single Otechie username
12 | custom: ['https://www.paypal.me/pritya']# Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
13 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | # See https://www.dartlang.org/guides/libraries/private-files
3 |
4 | # Files and directories created by pub
5 | .dart_tool/
6 | .packages
7 | .pub/
8 | build/
9 | # If you're building an application, you may want to check-in your pubspec.lock
10 | pubspec.lock
11 |
12 | # Directory created by dartdoc
13 | # If you don't generate documentation locally you can remove this line.
14 | doc/api/
15 | firebase/
16 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Priyanka Tyagi
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Flutter code recipes ##
2 |
3 | **Please check out latest code recipes [here](https://ptyagicodecamp.github.io/flutter-live-booklet-flutter-component-recipes.html)**
4 |
5 | _Follow me at twitter: @ptyagi13_
6 | _Medium: @ptyagicodecamp_
7 |
8 | #flutter, #flutter-widgets,#cross-platform, #android, #ios, #mobile,#flutter-development,#flutter-channel, #flutter-samples,#flutter-code,#material,
9 | #firebase-auth, #firestore, #firebase-hummingbird-login, #firebase-flutter-web, #firebase-hummingbird
10 |
--------------------------------------------------------------------------------
/landingpage/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.log
4 | *.pyc
5 | *.swp
6 | .DS_Store
7 | .atom/
8 | .buildlog/
9 | .history
10 | .svn/
11 |
12 | # IntelliJ related
13 | *.iml
14 | *.ipr
15 | *.iws
16 | .idea/
17 |
18 | # The .vscode folder contains launch configuration and tasks you configure in
19 | # VS Code which you may wish to be included in version control, so this line
20 | # is commented out by default.
21 | #.vscode/
22 |
23 | # Flutter/Dart/Pub related
24 | **/doc/api/
25 | .dart_tool/
26 | .flutter-plugins
27 | .packages
28 | .pub-cache/
29 | .pub/
30 | /build/
31 |
32 | # Android related
33 | **/android/**/gradle-wrapper.jar
34 | **/android/.gradle
35 | **/android/captures/
36 | **/android/gradlew
37 | **/android/gradlew.bat
38 | **/android/local.properties
39 | **/android/**/GeneratedPluginRegistrant.java
40 |
41 | # iOS/XCode related
42 | **/ios/**/*.mode1v3
43 | **/ios/**/*.mode2v3
44 | **/ios/**/*.moved-aside
45 | **/ios/**/*.pbxuser
46 | **/ios/**/*.perspectivev3
47 | **/ios/**/*sync/
48 | **/ios/**/.sconsign.dblite
49 | **/ios/**/.tags*
50 | **/ios/**/.vagrant/
51 | **/ios/**/DerivedData/
52 | **/ios/**/Icon?
53 | **/ios/**/Pods/
54 | **/ios/**/.symlinks/
55 | **/ios/**/profile
56 | **/ios/**/xcuserdata
57 | **/ios/.generated/
58 | **/ios/Flutter/App.framework
59 | **/ios/Flutter/Flutter.framework
60 | **/ios/Flutter/Generated.xcconfig
61 | **/ios/Flutter/app.flx
62 | **/ios/Flutter/app.zip
63 | **/ios/Flutter/flutter_assets/
64 | **/ios/ServiceDefinitions.json
65 | **/ios/Runner/GeneratedPluginRegistrant.*
66 |
67 | # Exceptions to above rules.
68 | !**/ios/**/default.mode1v3
69 | !**/ios/**/default.mode2v3
70 | !**/ios/**/default.pbxuser
71 | !**/ios/**/default.perspectivev3
72 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
73 |
--------------------------------------------------------------------------------
/landingpage/.metadata:
--------------------------------------------------------------------------------
1 | # This file tracks properties of this Flutter project.
2 | # Used by Flutter tool to assess capabilities and perform upgrades etc.
3 | #
4 | # This file should be version controlled and should not be manually edited.
5 |
6 | version:
7 | revision: cba41ca2ec977888806a9a02fc06c459f7a806ae
8 | channel: dev
9 |
10 | project_type: app
11 |
--------------------------------------------------------------------------------
/landingpage/README.md:
--------------------------------------------------------------------------------
1 | ## Flutter code recipes ##
2 |
3 | **Please check out latest code recipes [here](https://ptyagicodecamp.github.io/flutter-live-booklet-flutter-component-recipes.html)**
4 |
5 | _Follow me at twitter: @ptyagi13_
6 | _Medium: @ptyagicodecamp_
7 |
8 | #flutter, #flutter-widgets,#cross-platform, #android, #ios, #mobile,#flutter-development,#flutter-channel, #flutter-samples,#flutter-code,#material,
9 | #firebase-auth, #firestore, #firebase-hummingbird-login, #firebase-flutter-web, #firebase-hummingbird
--------------------------------------------------------------------------------
/landingpage/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | def localProperties = new Properties()
2 | def localPropertiesFile = rootProject.file('local.properties')
3 | if (localPropertiesFile.exists()) {
4 | localPropertiesFile.withReader('UTF-8') { reader ->
5 | localProperties.load(reader)
6 | }
7 | }
8 |
9 | def flutterRoot = localProperties.getProperty('flutter.sdk')
10 | if (flutterRoot == null) {
11 | //throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
12 | }
13 |
14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
15 | if (flutterVersionCode == null) {
16 | flutterVersionCode = '1'
17 | }
18 |
19 | def flutterVersionName = localProperties.getProperty('flutter.versionName')
20 | if (flutterVersionName == null) {
21 | flutterVersionName = '1.0'
22 | }
23 |
24 | apply plugin: 'com.android.application'
25 | apply plugin: 'kotlin-android'
26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
27 |
28 | android {
29 | compileSdkVersion 28
30 |
31 | compileOptions {
32 | sourceCompatibility JavaVersion.VERSION_1_8
33 | targetCompatibility JavaVersion.VERSION_1_8
34 | }
35 |
36 | sourceSets {
37 | main.java.srcDirs += 'src/main/kotlin'
38 | }
39 |
40 | lintOptions {
41 | disable 'InvalidPackage'
42 | }
43 |
44 | defaultConfig {
45 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
46 | applicationId "org.pcc.landingpage"
47 | minSdkVersion 26
48 | targetSdkVersion 28
49 | versionCode flutterVersionCode.toInteger()
50 | versionName flutterVersionName
51 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
52 | }
53 |
54 | signingConfigs {
55 | release {
56 | storeFile file("release.keystore")
57 | storePassword "******"
58 | keyAlias "******"
59 | keyPassword "******"
60 | }
61 | }
62 |
63 | buildTypes {
64 | release {
65 | // TODO: Add your own signing config for the release build.
66 | // Signing with the debug keys for now, so `flutter run --release` works.
67 | signingConfig signingConfigs.release
68 | }
69 | }
70 | buildToolsVersion = '28.0.3'
71 | compileOptions {
72 | sourceCompatibility = kotlin_version
73 | targetCompatibility = kotlin_version
74 | }
75 | }
76 |
77 | flutter {
78 | source '../..'
79 | }
80 |
81 | dependencies {
82 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
83 | implementation 'com.google.firebase:firebase-analytics:17.0.1'
84 | testImplementation 'junit:junit:4.12'
85 | androidTestImplementation 'androidx.test:runner:1.1.0'
86 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
87 | }
88 |
89 | apply plugin: 'com.google.gms.google-services'
--------------------------------------------------------------------------------
/landingpage/android/app/google-services.json:
--------------------------------------------------------------------------------
1 | {
2 | "project_info": {
3 | "project_number": "20736492610",
4 | "firebase_url": "https://flutter-to-fly.firebaseio.com",
5 | "project_id": "flutter-to-fly",
6 | "storage_bucket": "flutter-to-fly.appspot.com"
7 | },
8 | "client": [
9 | {
10 | "client_info": {
11 | "mobilesdk_app_id": "1:20736492610:android:df5b054b0db87bea",
12 | "android_client_info": {
13 | "package_name": "org.pcc.landingpage"
14 | }
15 | },
16 | "oauth_client": [
17 | {
18 | "client_id": "20736492610-n3vq7n8ab5lv50htnd4dvrt6c5c59jgq.apps.googleusercontent.com",
19 | "client_type": 1,
20 | "android_info": {
21 | "package_name": "org.pcc.landingpage",
22 | "certificate_hash": "d90efd38eb51a5a3f3e2ab70428ed905114493b6"
23 | }
24 | },
25 | {
26 | "client_id": "20736492610-d7jjjf6hlbl61jro5mvvo590smcq9je3.apps.googleusercontent.com",
27 | "client_type": 3
28 | }
29 | ],
30 | "api_key": [
31 | {
32 | "current_key": "AIzaSyBLEsu9Lh_mFLypJdm7jcIu5Dm-GF0viRg"
33 | }
34 | ],
35 | "services": {
36 | "appinvite_service": {
37 | "other_platform_oauth_client": [
38 | {
39 | "client_id": "20736492610-d7jjjf6hlbl61jro5mvvo590smcq9je3.apps.googleusercontent.com",
40 | "client_type": 3
41 | }
42 | ]
43 | }
44 | }
45 | }
46 | ],
47 | "configuration_version": "1"
48 | }
--------------------------------------------------------------------------------
/landingpage/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/landingpage/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
9 |
13 |
20 |
24 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/landingpage/android/app/src/main/kotlin/org/pcc/landingpage/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package org.pcc.landingpage
2 |
3 | import android.os.Bundle
4 |
5 | import io.flutter.app.FlutterActivity
6 | import io.flutter.plugins.GeneratedPluginRegistrant
7 |
8 | class MainActivity: FlutterActivity() {
9 | override fun onCreate(savedInstanceState: Bundle?) {
10 | super.onCreate(savedInstanceState)
11 | GeneratedPluginRegistrant.registerWith(this)
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/landingpage/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/landingpage/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/landingpage/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/landingpage/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/landingpage/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/landingpage/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/landingpage/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
--------------------------------------------------------------------------------
/landingpage/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/landingpage/android/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = '1.3.10'
3 | repositories {
4 | google()
5 | jcenter()
6 | }
7 |
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:3.5.0'
10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 | classpath 'com.google.gms:google-services:4.2.0'
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | google()
18 | jcenter()
19 | }
20 | }
21 |
22 | rootProject.buildDir = '../build'
23 | subprojects {
24 | project.buildDir = "${rootProject.buildDir}/${project.name}"
25 | }
26 | subprojects {
27 | project.evaluationDependsOn(':app')
28 | }
29 |
30 | task clean(type: Delete) {
31 | delete rootProject.buildDir
32 | }
33 |
--------------------------------------------------------------------------------
/landingpage/android/gradle.properties:
--------------------------------------------------------------------------------
1 | android.enableJetifier=true
2 | android.useAndroidX=true
3 | org.gradle.jvmargs=-Xmx1536M
4 | android.enableR8=true
5 |
--------------------------------------------------------------------------------
/landingpage/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Thu Aug 29 23:19:37 PDT 2019
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
7 |
--------------------------------------------------------------------------------
/landingpage/android/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath()
4 |
5 | def plugins = new Properties()
6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins')
7 | if (pluginsFile.exists()) {
8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) }
9 | }
10 |
11 | plugins.each { name, path ->
12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile()
13 | include ":$name"
14 | project(":$name").projectDir = pluginDirectory
15 | }
16 |
--------------------------------------------------------------------------------
/landingpage/assets/flutter-to-fly-creds.json:
--------------------------------------------------------------------------------
1 | /Users/ptyagi/Developer/ptyagicodecamp/keys/dialog_flow/flutter-to-fly-3c903be20948.json
--------------------------------------------------------------------------------
/landingpage/assets/fonts/Fresca-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/assets/fonts/Fresca-Regular.ttf
--------------------------------------------------------------------------------
/landingpage/assets/fonts/IndieFlower.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/assets/fonts/IndieFlower.ttf
--------------------------------------------------------------------------------
/landingpage/assets/fonts/Montserrat-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/assets/fonts/Montserrat-Medium.ttf
--------------------------------------------------------------------------------
/landingpage/assets/fonts/Montserrat-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/assets/fonts/Montserrat-Regular.ttf
--------------------------------------------------------------------------------
/landingpage/assets/fonts/Roboto-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/assets/fonts/Roboto-Regular.ttf
--------------------------------------------------------------------------------
/landingpage/assets/images/bird.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/assets/images/bird.jpg
--------------------------------------------------------------------------------
/landingpage/assets/images/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/assets/images/email.png
--------------------------------------------------------------------------------
/landingpage/assets/images/flutter_image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/assets/images/flutter_image.jpg
--------------------------------------------------------------------------------
/landingpage/assets/images/lego.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/assets/images/lego.png
--------------------------------------------------------------------------------
/landingpage/assets/images/menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/assets/images/menu.png
--------------------------------------------------------------------------------
/landingpage/ios/Flutter/AppFrameworkInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | App
9 | CFBundleIdentifier
10 | io.flutter.flutter.app
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | App
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1.0
23 | MinimumOSVersion
24 | 8.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/landingpage/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/landingpage/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/landingpage/ios/Flutter/flutter_export_environment.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | # This is a generated file; do not edit or check into version control.
3 | export "FLUTTER_ROOT=/Users/ptyagi/fluttersdk/flutter"
4 | export "FLUTTER_APPLICATION_PATH=/Users/ptyagi/Developer/ptyagicodecamp/flutter/x-flutter-landingpage/landingpage"
5 | export "FLUTTER_TARGET=lib/main.dart"
6 | export "FLUTTER_BUILD_DIR=build"
7 | export "SYMROOT=${SOURCE_ROOT}/../build/ios"
8 | export "FLUTTER_FRAMEWORK_DIR=/Users/ptyagi/fluttersdk/flutter/bin/cache/artifacts/engine/ios"
9 | export "FLUTTER_BUILD_NAME=1.0.0"
10 | export "FLUTTER_BUILD_NUMBER=1"
11 |
--------------------------------------------------------------------------------
/landingpage/ios/Podfile:
--------------------------------------------------------------------------------
1 | # Uncomment this line to define a global platform for your project
2 | # platform :ios, '9.0'
3 |
4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true'
6 |
7 | project 'Runner', {
8 | 'Debug' => :debug,
9 | 'Profile' => :release,
10 | 'Release' => :release,
11 | }
12 |
13 | def parse_KV_file(file, separator='=')
14 | file_abs_path = File.expand_path(file)
15 | if !File.exists? file_abs_path
16 | return [];
17 | end
18 | pods_ary = []
19 | skip_line_start_symbols = ["#", "/"]
20 | File.foreach(file_abs_path) { |line|
21 | next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ }
22 | plugin = line.split(pattern=separator)
23 | if plugin.length == 2
24 | podname = plugin[0].strip()
25 | path = plugin[1].strip()
26 | podpath = File.expand_path("#{path}", file_abs_path)
27 | pods_ary.push({:name => podname, :path => podpath});
28 | else
29 | puts "Invalid plugin specification: #{line}"
30 | end
31 | }
32 | return pods_ary
33 | end
34 |
35 | target 'Runner' do
36 | use_frameworks!
37 |
38 | # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
39 | # referring to absolute paths on developers' machines.
40 | system('rm -rf .symlinks')
41 | system('mkdir -p .symlinks/plugins')
42 |
43 | # Flutter Pods
44 | generated_xcode_build_settings = parse_KV_file('./Flutter/Generated.xcconfig')
45 | if generated_xcode_build_settings.empty?
46 | puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter pub get is executed first."
47 | end
48 | generated_xcode_build_settings.map { |p|
49 | if p[:name] == 'FLUTTER_FRAMEWORK_DIR'
50 | symlink = File.join('.symlinks', 'flutter')
51 | File.symlink(File.dirname(p[:path]), symlink)
52 | pod 'Flutter', :path => File.join(symlink, File.basename(p[:path]))
53 | end
54 | }
55 |
56 | # Plugin Pods
57 | plugin_pods = parse_KV_file('../.flutter-plugins')
58 | plugin_pods.map { |p|
59 | symlink = File.join('.symlinks', 'plugins', p[:name])
60 | File.symlink(p[:path], symlink)
61 | pod p[:name], :path => File.join(symlink, 'ios')
62 | }
63 | end
64 |
65 | # Prevent Cocoapods from embedding a second Flutter framework and causing an error with the new Xcode build system.
66 | install! 'cocoapods', :disable_input_output_paths => true
67 |
68 | post_install do |installer|
69 | installer.pods_project.targets.each do |target|
70 | target.build_configurations.each do |config|
71 | config.build_settings['ENABLE_BITCODE'] = 'NO'
72 | end
73 | end
74 | end
75 |
--------------------------------------------------------------------------------
/landingpage/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - BoringSSL-GRPC (0.0.3):
3 | - BoringSSL-GRPC/Implementation (= 0.0.3)
4 | - BoringSSL-GRPC/Interface (= 0.0.3)
5 | - BoringSSL-GRPC/Implementation (0.0.3):
6 | - BoringSSL-GRPC/Interface (= 0.0.3)
7 | - BoringSSL-GRPC/Interface (0.0.3)
8 | - cloud_firestore (0.0.1):
9 | - Firebase/Core
10 | - Firebase/Firestore (~> 6.0)
11 | - Flutter
12 | - Firebase/Auth (6.7.0):
13 | - Firebase/CoreOnly
14 | - FirebaseAuth (~> 6.2.3)
15 | - Firebase/Core (6.7.0):
16 | - Firebase/CoreOnly
17 | - FirebaseAnalytics (= 6.1.1)
18 | - Firebase/CoreOnly (6.7.0):
19 | - FirebaseCore (= 6.2.1)
20 | - Firebase/Firestore (6.7.0):
21 | - Firebase/CoreOnly
22 | - FirebaseFirestore (~> 1.4.4)
23 | - firebase_auth (0.0.1):
24 | - Firebase/Auth (~> 6.0)
25 | - Firebase/Core
26 | - Flutter
27 | - firebase_core (0.0.1):
28 | - Firebase/Core
29 | - Flutter
30 | - FirebaseAnalytics (6.1.1):
31 | - FirebaseCore (~> 6.2)
32 | - FirebaseInstanceID (~> 4.2)
33 | - GoogleAppMeasurement (= 6.1.1)
34 | - GoogleUtilities/AppDelegateSwizzler (~> 6.0)
35 | - GoogleUtilities/MethodSwizzler (~> 6.0)
36 | - GoogleUtilities/Network (~> 6.0)
37 | - "GoogleUtilities/NSData+zlib (~> 6.0)"
38 | - nanopb (~> 0.3)
39 | - FirebaseAuth (6.2.3):
40 | - FirebaseAuthInterop (~> 1.0)
41 | - FirebaseCore (~> 6.2)
42 | - GoogleUtilities/AppDelegateSwizzler (~> 6.2)
43 | - GoogleUtilities/Environment (~> 6.2)
44 | - GTMSessionFetcher/Core (~> 1.1)
45 | - FirebaseAuthInterop (1.0.0)
46 | - FirebaseCore (6.2.1):
47 | - FirebaseCoreDiagnostics (~> 1.0)
48 | - FirebaseCoreDiagnosticsInterop (~> 1.0)
49 | - GoogleUtilities/Environment (~> 6.2)
50 | - GoogleUtilities/Logger (~> 6.2)
51 | - FirebaseCoreDiagnostics (1.0.1):
52 | - FirebaseCoreDiagnosticsInterop (~> 1.0)
53 | - GoogleDataTransportCCTSupport (~> 1.0)
54 | - GoogleUtilities/Environment (~> 6.2)
55 | - GoogleUtilities/Logger (~> 6.2)
56 | - FirebaseCoreDiagnosticsInterop (1.0.0)
57 | - FirebaseFirestore (1.4.5):
58 | - FirebaseAuthInterop (~> 1.0)
59 | - FirebaseCore (~> 6.2)
60 | - FirebaseFirestore/abseil-cpp (= 1.4.5)
61 | - "gRPC-C++ (= 0.0.9)"
62 | - leveldb-library (~> 1.20)
63 | - nanopb (~> 0.3.901)
64 | - Protobuf (~> 3.1)
65 | - FirebaseFirestore/abseil-cpp (1.4.5):
66 | - FirebaseAuthInterop (~> 1.0)
67 | - FirebaseCore (~> 6.2)
68 | - "gRPC-C++ (= 0.0.9)"
69 | - leveldb-library (~> 1.20)
70 | - nanopb (~> 0.3.901)
71 | - Protobuf (~> 3.1)
72 | - FirebaseInstanceID (4.2.3):
73 | - FirebaseCore (~> 6.0)
74 | - GoogleUtilities/Environment (~> 6.0)
75 | - GoogleUtilities/UserDefaults (~> 6.0)
76 | - Flutter (1.0.0)
77 | - google_sign_in (0.0.1):
78 | - Flutter
79 | - GoogleSignIn (~> 4.0)
80 | - GoogleAppMeasurement (6.1.1):
81 | - GoogleUtilities/AppDelegateSwizzler (~> 6.0)
82 | - GoogleUtilities/MethodSwizzler (~> 6.0)
83 | - GoogleUtilities/Network (~> 6.0)
84 | - "GoogleUtilities/NSData+zlib (~> 6.0)"
85 | - nanopb (~> 0.3)
86 | - GoogleDataTransport (1.1.3)
87 | - GoogleDataTransportCCTSupport (1.0.2):
88 | - GoogleDataTransport (~> 1.1)
89 | - nanopb
90 | - GoogleSignIn (4.4.0):
91 | - "GoogleToolboxForMac/NSDictionary+URLArguments (~> 2.1)"
92 | - "GoogleToolboxForMac/NSString+URLArguments (~> 2.1)"
93 | - GTMSessionFetcher/Core (~> 1.1)
94 | - GoogleToolboxForMac/DebugUtils (2.2.1):
95 | - GoogleToolboxForMac/Defines (= 2.2.1)
96 | - GoogleToolboxForMac/Defines (2.2.1)
97 | - "GoogleToolboxForMac/NSDictionary+URLArguments (2.2.1)":
98 | - GoogleToolboxForMac/DebugUtils (= 2.2.1)
99 | - GoogleToolboxForMac/Defines (= 2.2.1)
100 | - "GoogleToolboxForMac/NSString+URLArguments (= 2.2.1)"
101 | - "GoogleToolboxForMac/NSString+URLArguments (2.2.1)"
102 | - GoogleUtilities/AppDelegateSwizzler (6.2.5):
103 | - GoogleUtilities/Environment
104 | - GoogleUtilities/Logger
105 | - GoogleUtilities/Network
106 | - GoogleUtilities/Environment (6.2.5)
107 | - GoogleUtilities/Logger (6.2.5):
108 | - GoogleUtilities/Environment
109 | - GoogleUtilities/MethodSwizzler (6.2.5):
110 | - GoogleUtilities/Logger
111 | - GoogleUtilities/Network (6.2.5):
112 | - GoogleUtilities/Logger
113 | - "GoogleUtilities/NSData+zlib"
114 | - GoogleUtilities/Reachability
115 | - "GoogleUtilities/NSData+zlib (6.2.5)"
116 | - GoogleUtilities/Reachability (6.2.5):
117 | - GoogleUtilities/Logger
118 | - GoogleUtilities/UserDefaults (6.2.5):
119 | - GoogleUtilities/Logger
120 | - "gRPC-C++ (0.0.9)":
121 | - "gRPC-C++/Implementation (= 0.0.9)"
122 | - "gRPC-C++/Interface (= 0.0.9)"
123 | - "gRPC-C++/Implementation (0.0.9)":
124 | - "gRPC-C++/Interface (= 0.0.9)"
125 | - gRPC-Core (= 1.21.0)
126 | - nanopb (~> 0.3)
127 | - "gRPC-C++/Interface (0.0.9)"
128 | - gRPC-Core (1.21.0):
129 | - gRPC-Core/Implementation (= 1.21.0)
130 | - gRPC-Core/Interface (= 1.21.0)
131 | - gRPC-Core/Implementation (1.21.0):
132 | - BoringSSL-GRPC (= 0.0.3)
133 | - gRPC-Core/Interface (= 1.21.0)
134 | - nanopb (~> 0.3)
135 | - gRPC-Core/Interface (1.21.0)
136 | - GTMSessionFetcher/Core (1.2.2)
137 | - leveldb-library (1.22)
138 | - nanopb (0.3.901):
139 | - nanopb/decode (= 0.3.901)
140 | - nanopb/encode (= 0.3.901)
141 | - nanopb/decode (0.3.901)
142 | - nanopb/encode (0.3.901)
143 | - Protobuf (3.9.0)
144 | - webview_flutter (0.0.1):
145 | - Flutter
146 |
147 | DEPENDENCIES:
148 | - cloud_firestore (from `.symlinks/plugins/cloud_firestore/ios`)
149 | - firebase_auth (from `.symlinks/plugins/firebase_auth/ios`)
150 | - firebase_core (from `.symlinks/plugins/firebase_core/ios`)
151 | - Flutter (from `.symlinks/flutter/ios`)
152 | - google_sign_in (from `.symlinks/plugins/google_sign_in/ios`)
153 | - webview_flutter (from `.symlinks/plugins/webview_flutter/ios`)
154 |
155 | SPEC REPOS:
156 | https://github.com/cocoapods/specs.git:
157 | - BoringSSL-GRPC
158 | - Firebase
159 | - FirebaseAnalytics
160 | - FirebaseAuth
161 | - FirebaseAuthInterop
162 | - FirebaseCore
163 | - FirebaseCoreDiagnostics
164 | - FirebaseCoreDiagnosticsInterop
165 | - FirebaseFirestore
166 | - FirebaseInstanceID
167 | - GoogleAppMeasurement
168 | - GoogleDataTransport
169 | - GoogleDataTransportCCTSupport
170 | - GoogleSignIn
171 | - GoogleToolboxForMac
172 | - GoogleUtilities
173 | - "gRPC-C++"
174 | - gRPC-Core
175 | - GTMSessionFetcher
176 | - leveldb-library
177 | - nanopb
178 | - Protobuf
179 |
180 | EXTERNAL SOURCES:
181 | cloud_firestore:
182 | :path: ".symlinks/plugins/cloud_firestore/ios"
183 | firebase_auth:
184 | :path: ".symlinks/plugins/firebase_auth/ios"
185 | firebase_core:
186 | :path: ".symlinks/plugins/firebase_core/ios"
187 | Flutter:
188 | :path: ".symlinks/flutter/ios"
189 | google_sign_in:
190 | :path: ".symlinks/plugins/google_sign_in/ios"
191 | webview_flutter:
192 | :path: ".symlinks/plugins/webview_flutter/ios"
193 |
194 | SPEC CHECKSUMS:
195 | BoringSSL-GRPC: db8764df3204ccea016e1c8dd15d9a9ad63ff318
196 | cloud_firestore: 51fb4d22b59e6f59b3931a10c5d1df64bd8c373f
197 | Firebase: 291d7b0a7b393f252358083b5d224884126fa46d
198 | firebase_auth: 1e3b7bdd37b9fbd4ef75ba1d985b00be09e02d3d
199 | firebase_core: ae55ea92448ec8675d325da4db22cf3b4d58a54d
200 | FirebaseAnalytics: 843c7f64a8f9c79f0d03281197ebe7bb1d58d477
201 | FirebaseAuth: e7f86c2dfc57281cd01f7da5e4b40e01e4510a4a
202 | FirebaseAuthInterop: 0ffa57668be100582bb7643d4fcb7615496c41fc
203 | FirebaseCore: 32b48f41c84a56fbde73b35ed01a830b3b6dc048
204 | FirebaseCoreDiagnostics: 4c04ae09d0ab027c30179828c6bb47764df1bd13
205 | FirebaseCoreDiagnosticsInterop: 6829da2b8d1fc795ff1bd99df751d3788035d2cb
206 | FirebaseFirestore: c457c22c49ccf15a0fbe95bfcbcf69b984dec285
207 | FirebaseInstanceID: 8b42755db950682e7de0d167bc6fb26a57b244af
208 | Flutter: 58dd7d1b27887414a370fcccb9e645c08ffd7a6a
209 | google_sign_in: 27e70a98b529f0b076d4b19f231b81da28b1750b
210 | GoogleAppMeasurement: 86a82f0e1f20b8eedf8e20326530138fd71409de
211 | GoogleDataTransport: 91e682bd60a49d3f8f69f2e909a66efaed5a1e7a
212 | GoogleDataTransportCCTSupport: 6b545f7149111180763dc18c6f372c963de4a310
213 | GoogleSignIn: 7ff245e1a7b26d379099d3243a562f5747e23d39
214 | GoogleToolboxForMac: b3553629623a3b1bff17f555e736cd5a6d95ad55
215 | GoogleUtilities: e7dc37039b19df7fe543479d3e4a02ac8d11bb69
216 | "gRPC-C++": 9dfe7b44821e7b3e44aacad2af29d2c21f7cde83
217 | gRPC-Core: c9aef9a261a1247e881b18059b84d597293c9947
218 | GTMSessionFetcher: 61bb0f61a4cb560030f1222021178008a5727a23
219 | leveldb-library: 55d93ee664b4007aac644a782d11da33fba316f7
220 | nanopb: 2901f78ea1b7b4015c860c2fdd1ea2fee1a18d48
221 | Protobuf: 1097ca58584c8d9be81bfbf2c5ff5975648dd87a
222 | webview_flutter: 1aa7604e6cdb451a9b7ed2c37d5454c0b440246b
223 |
224 | PODFILE CHECKSUM: b6a0a141693093b304368d08511b46cf3d1d0ac5
225 |
226 | COCOAPODS: 1.7.3
227 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
12 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; };
13 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
14 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
15 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; };
16 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
17 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; };
18 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
19 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
20 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
21 | A183DF4098A71000CDB5952D /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 43A91ADE14328CB71ABFF203 /* Pods_Runner.framework */; };
22 | /* End PBXBuildFile section */
23 |
24 | /* Begin PBXCopyFilesBuildPhase section */
25 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
26 | isa = PBXCopyFilesBuildPhase;
27 | buildActionMask = 2147483647;
28 | dstPath = "";
29 | dstSubfolderSpec = 10;
30 | files = (
31 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */,
32 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */,
33 | );
34 | name = "Embed Frameworks";
35 | runOnlyForDeploymentPostprocessing = 0;
36 | };
37 | /* End PBXCopyFilesBuildPhase section */
38 |
39 | /* Begin PBXFileReference section */
40 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
41 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
42 | 258B3C4215B2B54F47C025CA /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
43 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
44 | 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; };
45 | 43A91ADE14328CB71ABFF203 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
46 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
47 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
48 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
49 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
50 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
51 | 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; };
52 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
53 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
54 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
55 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
56 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
57 | A514CCAA45651F6D153EE609 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
58 | C4E81F900FBA5A0A993344F3 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
59 | /* End PBXFileReference section */
60 |
61 | /* Begin PBXFrameworksBuildPhase section */
62 | 97C146EB1CF9000F007C117D /* Frameworks */ = {
63 | isa = PBXFrameworksBuildPhase;
64 | buildActionMask = 2147483647;
65 | files = (
66 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */,
67 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */,
68 | A183DF4098A71000CDB5952D /* Pods_Runner.framework in Frameworks */,
69 | );
70 | runOnlyForDeploymentPostprocessing = 0;
71 | };
72 | /* End PBXFrameworksBuildPhase section */
73 |
74 | /* Begin PBXGroup section */
75 | 3F274183038AD7734253F89C /* Frameworks */ = {
76 | isa = PBXGroup;
77 | children = (
78 | 43A91ADE14328CB71ABFF203 /* Pods_Runner.framework */,
79 | );
80 | name = Frameworks;
81 | sourceTree = "";
82 | };
83 | 9740EEB11CF90186004384FC /* Flutter */ = {
84 | isa = PBXGroup;
85 | children = (
86 | 3B80C3931E831B6300D905FE /* App.framework */,
87 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
88 | 9740EEBA1CF902C7004384FC /* Flutter.framework */,
89 | 9740EEB21CF90195004384FC /* Debug.xcconfig */,
90 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
91 | 9740EEB31CF90195004384FC /* Generated.xcconfig */,
92 | );
93 | name = Flutter;
94 | sourceTree = "";
95 | };
96 | 97C146E51CF9000F007C117D = {
97 | isa = PBXGroup;
98 | children = (
99 | 9740EEB11CF90186004384FC /* Flutter */,
100 | 97C146F01CF9000F007C117D /* Runner */,
101 | 97C146EF1CF9000F007C117D /* Products */,
102 | DDE802CCC67918A9A3C4147A /* Pods */,
103 | 3F274183038AD7734253F89C /* Frameworks */,
104 | );
105 | sourceTree = "";
106 | };
107 | 97C146EF1CF9000F007C117D /* Products */ = {
108 | isa = PBXGroup;
109 | children = (
110 | 97C146EE1CF9000F007C117D /* Runner.app */,
111 | );
112 | name = Products;
113 | sourceTree = "";
114 | };
115 | 97C146F01CF9000F007C117D /* Runner */ = {
116 | isa = PBXGroup;
117 | children = (
118 | 97C146FA1CF9000F007C117D /* Main.storyboard */,
119 | 97C146FD1CF9000F007C117D /* Assets.xcassets */,
120 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
121 | 97C147021CF9000F007C117D /* Info.plist */,
122 | 97C146F11CF9000F007C117D /* Supporting Files */,
123 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
124 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
125 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
126 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
127 | );
128 | path = Runner;
129 | sourceTree = "";
130 | };
131 | 97C146F11CF9000F007C117D /* Supporting Files */ = {
132 | isa = PBXGroup;
133 | children = (
134 | );
135 | name = "Supporting Files";
136 | sourceTree = "";
137 | };
138 | DDE802CCC67918A9A3C4147A /* Pods */ = {
139 | isa = PBXGroup;
140 | children = (
141 | A514CCAA45651F6D153EE609 /* Pods-Runner.debug.xcconfig */,
142 | C4E81F900FBA5A0A993344F3 /* Pods-Runner.release.xcconfig */,
143 | 258B3C4215B2B54F47C025CA /* Pods-Runner.profile.xcconfig */,
144 | );
145 | name = Pods;
146 | path = Pods;
147 | sourceTree = "";
148 | };
149 | /* End PBXGroup section */
150 |
151 | /* Begin PBXNativeTarget section */
152 | 97C146ED1CF9000F007C117D /* Runner */ = {
153 | isa = PBXNativeTarget;
154 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
155 | buildPhases = (
156 | 008DC54D775173CA1D40A3BB /* [CP] Check Pods Manifest.lock */,
157 | 9740EEB61CF901F6004384FC /* Run Script */,
158 | 97C146EA1CF9000F007C117D /* Sources */,
159 | 97C146EB1CF9000F007C117D /* Frameworks */,
160 | 97C146EC1CF9000F007C117D /* Resources */,
161 | 9705A1C41CF9048500538489 /* Embed Frameworks */,
162 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
163 | C039950F40F822BF90A0179C /* [CP] Embed Pods Frameworks */,
164 | 3B60F9466F7CAA7F2EFC7FCC /* [CP] Copy Pods Resources */,
165 | );
166 | buildRules = (
167 | );
168 | dependencies = (
169 | );
170 | name = Runner;
171 | productName = Runner;
172 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
173 | productType = "com.apple.product-type.application";
174 | };
175 | /* End PBXNativeTarget section */
176 |
177 | /* Begin PBXProject section */
178 | 97C146E61CF9000F007C117D /* Project object */ = {
179 | isa = PBXProject;
180 | attributes = {
181 | LastUpgradeCheck = 0910;
182 | ORGANIZATIONNAME = "The Chromium Authors";
183 | TargetAttributes = {
184 | 97C146ED1CF9000F007C117D = {
185 | CreatedOnToolsVersion = 7.3.1;
186 | LastSwiftMigration = 0910;
187 | };
188 | };
189 | };
190 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
191 | compatibilityVersion = "Xcode 3.2";
192 | developmentRegion = English;
193 | hasScannedForEncodings = 0;
194 | knownRegions = (
195 | en,
196 | Base,
197 | );
198 | mainGroup = 97C146E51CF9000F007C117D;
199 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
200 | projectDirPath = "";
201 | projectRoot = "";
202 | targets = (
203 | 97C146ED1CF9000F007C117D /* Runner */,
204 | );
205 | };
206 | /* End PBXProject section */
207 |
208 | /* Begin PBXResourcesBuildPhase section */
209 | 97C146EC1CF9000F007C117D /* Resources */ = {
210 | isa = PBXResourcesBuildPhase;
211 | buildActionMask = 2147483647;
212 | files = (
213 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
214 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
215 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */,
216 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
217 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
218 | );
219 | runOnlyForDeploymentPostprocessing = 0;
220 | };
221 | /* End PBXResourcesBuildPhase section */
222 |
223 | /* Begin PBXShellScriptBuildPhase section */
224 | 008DC54D775173CA1D40A3BB /* [CP] Check Pods Manifest.lock */ = {
225 | isa = PBXShellScriptBuildPhase;
226 | buildActionMask = 2147483647;
227 | files = (
228 | );
229 | inputFileListPaths = (
230 | );
231 | inputPaths = (
232 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
233 | "${PODS_ROOT}/Manifest.lock",
234 | );
235 | name = "[CP] Check Pods Manifest.lock";
236 | outputFileListPaths = (
237 | );
238 | outputPaths = (
239 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
240 | );
241 | runOnlyForDeploymentPostprocessing = 0;
242 | shellPath = /bin/sh;
243 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
244 | showEnvVarsInLog = 0;
245 | };
246 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
247 | isa = PBXShellScriptBuildPhase;
248 | buildActionMask = 2147483647;
249 | files = (
250 | );
251 | inputPaths = (
252 | );
253 | name = "Thin Binary";
254 | outputPaths = (
255 | );
256 | runOnlyForDeploymentPostprocessing = 0;
257 | shellPath = /bin/sh;
258 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin";
259 | };
260 | 3B60F9466F7CAA7F2EFC7FCC /* [CP] Copy Pods Resources */ = {
261 | isa = PBXShellScriptBuildPhase;
262 | buildActionMask = 2147483647;
263 | files = (
264 | );
265 | inputPaths = (
266 | );
267 | name = "[CP] Copy Pods Resources";
268 | outputPaths = (
269 | );
270 | runOnlyForDeploymentPostprocessing = 0;
271 | shellPath = /bin/sh;
272 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
273 | showEnvVarsInLog = 0;
274 | };
275 | 9740EEB61CF901F6004384FC /* Run Script */ = {
276 | isa = PBXShellScriptBuildPhase;
277 | buildActionMask = 2147483647;
278 | files = (
279 | );
280 | inputPaths = (
281 | );
282 | name = "Run Script";
283 | outputPaths = (
284 | );
285 | runOnlyForDeploymentPostprocessing = 0;
286 | shellPath = /bin/sh;
287 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
288 | };
289 | C039950F40F822BF90A0179C /* [CP] Embed Pods Frameworks */ = {
290 | isa = PBXShellScriptBuildPhase;
291 | buildActionMask = 2147483647;
292 | files = (
293 | );
294 | inputPaths = (
295 | );
296 | name = "[CP] Embed Pods Frameworks";
297 | outputPaths = (
298 | );
299 | runOnlyForDeploymentPostprocessing = 0;
300 | shellPath = /bin/sh;
301 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
302 | showEnvVarsInLog = 0;
303 | };
304 | /* End PBXShellScriptBuildPhase section */
305 |
306 | /* Begin PBXSourcesBuildPhase section */
307 | 97C146EA1CF9000F007C117D /* Sources */ = {
308 | isa = PBXSourcesBuildPhase;
309 | buildActionMask = 2147483647;
310 | files = (
311 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
312 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
313 | );
314 | runOnlyForDeploymentPostprocessing = 0;
315 | };
316 | /* End PBXSourcesBuildPhase section */
317 |
318 | /* Begin PBXVariantGroup section */
319 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
320 | isa = PBXVariantGroup;
321 | children = (
322 | 97C146FB1CF9000F007C117D /* Base */,
323 | );
324 | name = Main.storyboard;
325 | sourceTree = "";
326 | };
327 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
328 | isa = PBXVariantGroup;
329 | children = (
330 | 97C147001CF9000F007C117D /* Base */,
331 | );
332 | name = LaunchScreen.storyboard;
333 | sourceTree = "";
334 | };
335 | /* End PBXVariantGroup section */
336 |
337 | /* Begin XCBuildConfiguration section */
338 | 249021D3217E4FDB00AE95B9 /* Profile */ = {
339 | isa = XCBuildConfiguration;
340 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
341 | buildSettings = {
342 | ALWAYS_SEARCH_USER_PATHS = NO;
343 | CLANG_ANALYZER_NONNULL = YES;
344 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
345 | CLANG_CXX_LIBRARY = "libc++";
346 | CLANG_ENABLE_MODULES = YES;
347 | CLANG_ENABLE_OBJC_ARC = YES;
348 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
349 | CLANG_WARN_BOOL_CONVERSION = YES;
350 | CLANG_WARN_COMMA = YES;
351 | CLANG_WARN_CONSTANT_CONVERSION = YES;
352 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
353 | CLANG_WARN_EMPTY_BODY = YES;
354 | CLANG_WARN_ENUM_CONVERSION = YES;
355 | CLANG_WARN_INFINITE_RECURSION = YES;
356 | CLANG_WARN_INT_CONVERSION = YES;
357 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
358 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
359 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
360 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
361 | CLANG_WARN_STRICT_PROTOTYPES = YES;
362 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
363 | CLANG_WARN_UNREACHABLE_CODE = YES;
364 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
365 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
366 | COPY_PHASE_STRIP = NO;
367 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
368 | ENABLE_NS_ASSERTIONS = NO;
369 | ENABLE_STRICT_OBJC_MSGSEND = YES;
370 | GCC_C_LANGUAGE_STANDARD = gnu99;
371 | GCC_NO_COMMON_BLOCKS = YES;
372 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
373 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
374 | GCC_WARN_UNDECLARED_SELECTOR = YES;
375 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
376 | GCC_WARN_UNUSED_FUNCTION = YES;
377 | GCC_WARN_UNUSED_VARIABLE = YES;
378 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
379 | MTL_ENABLE_DEBUG_INFO = NO;
380 | SDKROOT = iphoneos;
381 | TARGETED_DEVICE_FAMILY = "1,2";
382 | VALIDATE_PRODUCT = YES;
383 | };
384 | name = Profile;
385 | };
386 | 249021D4217E4FDB00AE95B9 /* Profile */ = {
387 | isa = XCBuildConfiguration;
388 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
389 | buildSettings = {
390 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
391 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
392 | DEVELOPMENT_TEAM = S8QB4VV633;
393 | ENABLE_BITCODE = NO;
394 | FRAMEWORK_SEARCH_PATHS = (
395 | "$(inherited)",
396 | "$(PROJECT_DIR)/Flutter",
397 | );
398 | INFOPLIST_FILE = Runner/Info.plist;
399 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
400 | LIBRARY_SEARCH_PATHS = (
401 | "$(inherited)",
402 | "$(PROJECT_DIR)/Flutter",
403 | );
404 | PRODUCT_BUNDLE_IDENTIFIER = org.pcc.landingpage;
405 | PRODUCT_NAME = "$(TARGET_NAME)";
406 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
407 | SWIFT_VERSION = 4.0;
408 | VERSIONING_SYSTEM = "apple-generic";
409 | };
410 | name = Profile;
411 | };
412 | 97C147031CF9000F007C117D /* Debug */ = {
413 | isa = XCBuildConfiguration;
414 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
415 | buildSettings = {
416 | ALWAYS_SEARCH_USER_PATHS = NO;
417 | CLANG_ANALYZER_NONNULL = YES;
418 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
419 | CLANG_CXX_LIBRARY = "libc++";
420 | CLANG_ENABLE_MODULES = YES;
421 | CLANG_ENABLE_OBJC_ARC = YES;
422 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
423 | CLANG_WARN_BOOL_CONVERSION = YES;
424 | CLANG_WARN_COMMA = YES;
425 | CLANG_WARN_CONSTANT_CONVERSION = YES;
426 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
427 | CLANG_WARN_EMPTY_BODY = YES;
428 | CLANG_WARN_ENUM_CONVERSION = YES;
429 | CLANG_WARN_INFINITE_RECURSION = YES;
430 | CLANG_WARN_INT_CONVERSION = YES;
431 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
432 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
433 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
434 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
435 | CLANG_WARN_STRICT_PROTOTYPES = YES;
436 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
437 | CLANG_WARN_UNREACHABLE_CODE = YES;
438 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
439 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
440 | COPY_PHASE_STRIP = NO;
441 | DEBUG_INFORMATION_FORMAT = dwarf;
442 | ENABLE_STRICT_OBJC_MSGSEND = YES;
443 | ENABLE_TESTABILITY = YES;
444 | GCC_C_LANGUAGE_STANDARD = gnu99;
445 | GCC_DYNAMIC_NO_PIC = NO;
446 | GCC_NO_COMMON_BLOCKS = YES;
447 | GCC_OPTIMIZATION_LEVEL = 0;
448 | GCC_PREPROCESSOR_DEFINITIONS = (
449 | "DEBUG=1",
450 | "$(inherited)",
451 | );
452 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
453 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
454 | GCC_WARN_UNDECLARED_SELECTOR = YES;
455 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
456 | GCC_WARN_UNUSED_FUNCTION = YES;
457 | GCC_WARN_UNUSED_VARIABLE = YES;
458 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
459 | MTL_ENABLE_DEBUG_INFO = YES;
460 | ONLY_ACTIVE_ARCH = YES;
461 | SDKROOT = iphoneos;
462 | TARGETED_DEVICE_FAMILY = "1,2";
463 | };
464 | name = Debug;
465 | };
466 | 97C147041CF9000F007C117D /* Release */ = {
467 | isa = XCBuildConfiguration;
468 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
469 | buildSettings = {
470 | ALWAYS_SEARCH_USER_PATHS = NO;
471 | CLANG_ANALYZER_NONNULL = YES;
472 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
473 | CLANG_CXX_LIBRARY = "libc++";
474 | CLANG_ENABLE_MODULES = YES;
475 | CLANG_ENABLE_OBJC_ARC = YES;
476 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
477 | CLANG_WARN_BOOL_CONVERSION = YES;
478 | CLANG_WARN_COMMA = YES;
479 | CLANG_WARN_CONSTANT_CONVERSION = YES;
480 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
481 | CLANG_WARN_EMPTY_BODY = YES;
482 | CLANG_WARN_ENUM_CONVERSION = YES;
483 | CLANG_WARN_INFINITE_RECURSION = YES;
484 | CLANG_WARN_INT_CONVERSION = YES;
485 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
486 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
487 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
488 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
489 | CLANG_WARN_STRICT_PROTOTYPES = YES;
490 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
491 | CLANG_WARN_UNREACHABLE_CODE = YES;
492 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
493 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
494 | COPY_PHASE_STRIP = NO;
495 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
496 | ENABLE_NS_ASSERTIONS = NO;
497 | ENABLE_STRICT_OBJC_MSGSEND = YES;
498 | GCC_C_LANGUAGE_STANDARD = gnu99;
499 | GCC_NO_COMMON_BLOCKS = YES;
500 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
501 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
502 | GCC_WARN_UNDECLARED_SELECTOR = YES;
503 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
504 | GCC_WARN_UNUSED_FUNCTION = YES;
505 | GCC_WARN_UNUSED_VARIABLE = YES;
506 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
507 | MTL_ENABLE_DEBUG_INFO = NO;
508 | SDKROOT = iphoneos;
509 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
510 | TARGETED_DEVICE_FAMILY = "1,2";
511 | VALIDATE_PRODUCT = YES;
512 | };
513 | name = Release;
514 | };
515 | 97C147061CF9000F007C117D /* Debug */ = {
516 | isa = XCBuildConfiguration;
517 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
518 | buildSettings = {
519 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
520 | CLANG_ENABLE_MODULES = YES;
521 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
522 | ENABLE_BITCODE = NO;
523 | FRAMEWORK_SEARCH_PATHS = (
524 | "$(inherited)",
525 | "$(PROJECT_DIR)/Flutter",
526 | );
527 | INFOPLIST_FILE = Runner/Info.plist;
528 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
529 | LIBRARY_SEARCH_PATHS = (
530 | "$(inherited)",
531 | "$(PROJECT_DIR)/Flutter",
532 | );
533 | PRODUCT_BUNDLE_IDENTIFIER = org.pcc.landingpage;
534 | PRODUCT_NAME = "$(TARGET_NAME)";
535 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
536 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
537 | SWIFT_SWIFT3_OBJC_INFERENCE = On;
538 | SWIFT_VERSION = 4.0;
539 | VERSIONING_SYSTEM = "apple-generic";
540 | };
541 | name = Debug;
542 | };
543 | 97C147071CF9000F007C117D /* Release */ = {
544 | isa = XCBuildConfiguration;
545 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
546 | buildSettings = {
547 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
548 | CLANG_ENABLE_MODULES = YES;
549 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
550 | ENABLE_BITCODE = NO;
551 | FRAMEWORK_SEARCH_PATHS = (
552 | "$(inherited)",
553 | "$(PROJECT_DIR)/Flutter",
554 | );
555 | INFOPLIST_FILE = Runner/Info.plist;
556 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
557 | LIBRARY_SEARCH_PATHS = (
558 | "$(inherited)",
559 | "$(PROJECT_DIR)/Flutter",
560 | );
561 | PRODUCT_BUNDLE_IDENTIFIER = org.pcc.landingpage;
562 | PRODUCT_NAME = "$(TARGET_NAME)";
563 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
564 | SWIFT_SWIFT3_OBJC_INFERENCE = On;
565 | SWIFT_VERSION = 4.0;
566 | VERSIONING_SYSTEM = "apple-generic";
567 | };
568 | name = Release;
569 | };
570 | /* End XCBuildConfiguration section */
571 |
572 | /* Begin XCConfigurationList section */
573 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
574 | isa = XCConfigurationList;
575 | buildConfigurations = (
576 | 97C147031CF9000F007C117D /* Debug */,
577 | 97C147041CF9000F007C117D /* Release */,
578 | 249021D3217E4FDB00AE95B9 /* Profile */,
579 | );
580 | defaultConfigurationIsVisible = 0;
581 | defaultConfigurationName = Release;
582 | };
583 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
584 | isa = XCConfigurationList;
585 | buildConfigurations = (
586 | 97C147061CF9000F007C117D /* Debug */,
587 | 97C147071CF9000F007C117D /* Release */,
588 | 249021D4217E4FDB00AE95B9 /* Profile */,
589 | );
590 | defaultConfigurationIsVisible = 0;
591 | defaultConfigurationName = Release;
592 | };
593 | /* End XCConfigurationList section */
594 | };
595 | rootObject = 97C146E61CF9000F007C117D /* Project object */;
596 | }
597 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
31 |
32 |
33 |
34 |
40 |
41 |
42 |
43 |
44 |
45 |
56 |
58 |
64 |
65 |
66 |
67 |
68 |
69 |
75 |
77 |
83 |
84 |
85 |
86 |
88 |
89 |
92 |
93 |
94 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | BuildSystemType
6 | Original
7 |
8 |
9 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import Flutter
3 |
4 | @UIApplicationMain
5 | @objc class AppDelegate: FlutterAppDelegate {
6 | override func application(
7 | _ application: UIApplication,
8 | didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?
9 | ) -> Bool {
10 | GeneratedPluginRegistrant.register(with: self)
11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/172.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/172.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/196.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/196.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/216.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/216.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/48.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/55.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/55.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/88.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/88.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {"images":[{"size":"60x60","expected-size":"180","filename":"180.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"40x40","expected-size":"80","filename":"80.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"40x40","expected-size":"120","filename":"120.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"60x60","expected-size":"120","filename":"120.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"57x57","expected-size":"57","filename":"57.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"1x"},{"size":"29x29","expected-size":"58","filename":"58.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"29x29","expected-size":"29","filename":"29.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"1x"},{"size":"29x29","expected-size":"87","filename":"87.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"57x57","expected-size":"114","filename":"114.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"20x20","expected-size":"40","filename":"40.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"20x20","expected-size":"60","filename":"60.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"1024x1024","filename":"1024.png","expected-size":"1024","idiom":"ios-marketing","folder":"Assets.xcassets/AppIcon.appiconset/","scale":"1x"},{"size":"40x40","expected-size":"80","filename":"80.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"72x72","expected-size":"72","filename":"72.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"76x76","expected-size":"152","filename":"152.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"50x50","expected-size":"100","filename":"100.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"29x29","expected-size":"58","filename":"58.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"76x76","expected-size":"76","filename":"76.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"29x29","expected-size":"29","filename":"29.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"50x50","expected-size":"50","filename":"50.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"72x72","expected-size":"144","filename":"144.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"40x40","expected-size":"40","filename":"40.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"83.5x83.5","expected-size":"167","filename":"167.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"20x20","expected-size":"20","filename":"20.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"20x20","expected-size":"40","filename":"40.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"idiom":"watch","filename":"172.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"38mm","scale":"2x","size":"86x86","expected-size":"172","role":"quickLook"},{"idiom":"watch","filename":"80.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"38mm","scale":"2x","size":"40x40","expected-size":"80","role":"appLauncher"},{"idiom":"watch","filename":"88.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"40mm","scale":"2x","size":"44x44","expected-size":"88","role":"appLauncher"},{"idiom":"watch","filename":"100.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"44mm","scale":"2x","size":"50x50","expected-size":"100","role":"appLauncher"},{"idiom":"watch","filename":"196.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"42mm","scale":"2x","size":"98x98","expected-size":"196","role":"quickLook"},{"idiom":"watch","filename":"216.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"44mm","scale":"2x","size":"108x108","expected-size":"216","role":"quickLook"},{"idiom":"watch","filename":"48.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"38mm","scale":"2x","size":"24x24","expected-size":"48","role":"notificationCenter"},{"idiom":"watch","filename":"55.png","folder":"Assets.xcassets/AppIcon.appiconset/","subtype":"42mm","scale":"2x","size":"27.5x27.5","expected-size":"55","role":"notificationCenter"},{"size":"29x29","expected-size":"87","filename":"87.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"watch","role":"companionSettings","scale":"3x"},{"size":"29x29","expected-size":"58","filename":"58.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"watch","role":"companionSettings","scale":"2x"},{"size":"1024x1024","expected-size":"1024","filename":"1024.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"watch-marketing","scale":"1x"},{"size":"128x128","expected-size":"128","filename":"128.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"1x"},{"size":"256x256","expected-size":"256","filename":"256.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"1x"},{"size":"128x128","expected-size":"256","filename":"256.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"2x"},{"size":"256x256","expected-size":"512","filename":"512.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"2x"},{"size":"32x32","expected-size":"32","filename":"32.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"1x"},{"size":"512x512","expected-size":"512","filename":"512.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"1x"},{"size":"16x16","expected-size":"16","filename":"16.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"1x"},{"size":"16x16","expected-size":"32","filename":"32.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"2x"},{"size":"32x32","expected-size":"64","filename":"64.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"2x"},{"size":"512x512","expected-size":"1024","filename":"1024.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"mac","scale":"2x"}]}
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchImage.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchImage@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "LaunchImage@3x.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ptyagicodecamp/x-flutter-landingpage/eee23edfdabf9b9704d17c8eb975efb922c87f94/landingpage/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md:
--------------------------------------------------------------------------------
1 | # Launch Screen Assets
2 |
3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory.
4 |
5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | landingpage
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | $(FLUTTER_BUILD_NAME)
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | $(FLUTTER_BUILD_NUMBER)
23 | LSRequiresIPhoneOS
24 |
25 | UILaunchStoryboardName
26 | LaunchScreen
27 | UIMainStoryboardFile
28 | Main
29 | UISupportedInterfaceOrientations
30 |
31 | UIInterfaceOrientationPortrait
32 | UIInterfaceOrientationLandscapeLeft
33 | UIInterfaceOrientationLandscapeRight
34 |
35 | UISupportedInterfaceOrientations~ipad
36 |
37 | UIInterfaceOrientationPortrait
38 | UIInterfaceOrientationPortraitUpsideDown
39 | UIInterfaceOrientationLandscapeLeft
40 | UIInterfaceOrientationLandscapeRight
41 |
42 | UIViewControllerBasedStatusBarAppearance
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/landingpage/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
--------------------------------------------------------------------------------
/landingpage/lib/data/demo_data.dart:
--------------------------------------------------------------------------------
1 | import 'package:landingpage/data/res_list_item.dart';
2 |
3 | import 'res_list_item.dart';
4 |
5 | final List resources = [
6 | Resource('References', "", "", references),
7 | Resource('Cheat Sheets', "", "", cheatSheets),
8 | Resource('Curated Contents', "", "", curatedItems),
9 | Resource('Videos & Podcasts', "", "", mediaListing)
10 | ];
11 |
12 | final List references = Resource.fromData([
13 | {
14 | "title": "It's All Widget",
15 | "description":
16 | "An open list of example apps made with Flutter include many open source samples.",
17 | "link": "https://itsallwidgets.com/"
18 | },
19 | {
20 | "title": "Flutter",
21 | "description": "Official Flutter Development Website",
22 | "link": "https://flutter.dev/"
23 | }
24 | ]);
25 |
26 | final List cheatSheets = Resource.fromData([
27 | {
28 | "title": "Flutter Layout Cheat Sheet",
29 | "description": "",
30 | "link":
31 | "https://medium.com/flutter-community/flutter-layout-cheat-sheet-5363348d037e"
32 | },
33 | {
34 | "title": "Flutter Animations Cheat Sheet",
35 | "description": "",
36 | "link":
37 | "https://medium.com/flutter-community/flutter-animations-cheat-sheet-7f8cebfb850c"
38 | },
39 | {
40 | "title": "Dart Awesome Cheat Sheet for Flutter Beginners",
41 | "description": "",
42 | "link": "https://link.medium.com/RDSSCukKSZ"
43 | }
44 | ]);
45 |
46 | final List curatedItems = Resource.fromData([
47 | {
48 | "title": "FlutterX",
49 | "description": "A Searchable List of Flutter Resources",
50 | "link": "https://flutterx.com/"
51 | },
52 | {
53 | "title": "Curated list of resources",
54 | "description": "A Searchable List of Flutter Resources",
55 | "link": "https://github.com/Solido/awesome-flutter"
56 | }
57 | ]);
58 |
59 | final List mediaListing = Resource.fromData([
60 | {
61 | "title": "Flutter YouTube Channel",
62 | "description": "",
63 | "link": "https://www.youtube.com/flutterdev"
64 | },
65 | {
66 | "title": "The Boring Flutter Development Show",
67 | "description":
68 | "The Boring Show is a biweekly, long-format show in which a few engineers from the Flutter team get together to hack on something",
69 | "link":
70 | "https://www.youtube.com/watch?v=vqPG1tU6-c0&list=PLjxrf2q8roU3ahJVrSgAnPjzkpGmL9Czl"
71 | },
72 | {
73 | "title": "Flutter Widget of the Week",
74 | "description":
75 | "Widget of the Week is a series of quick, animated videos, each of which covers a particular widget from the Flutter SDK",
76 | "link":
77 | "https://www.youtube.com/playlist?list=PLjxrf2q8roU23XGwz3Km7sQZFTdB996iG"
78 | },
79 | {
80 | "title": "Flutter in Focus",
81 | "description":
82 | "Let's learn Flutter features in 10 minutes or less with our new series, Flutter in Focus!",
83 | "link":
84 | "https://www.youtube.com/playlist?list=PLjxrf2q8roU2HdJQDjJzOeO6J3FoFLWr2"
85 | },
86 | {
87 | "title": "Flutter Podcast",
88 | "description":
89 | "An ongoing series featuring some of the amazing developers from the Flutter community.",
90 | "link": "https://itsallwidgets.com/podcast"
91 | }
92 | ]);
93 |
--------------------------------------------------------------------------------
/landingpage/lib/data/reources.dart:
--------------------------------------------------------------------------------
1 | import 'package:landingpage/data/res_list_item.dart';
2 | import 'package:flutter/material.dart';
3 | import 'package:flutter/widgets.dart';
4 | import 'package:landingpage/plugins/url_launcher/url_launcher.dart';
5 | import 'dart:convert';
6 | import 'package:url_launcher/url_launcher.dart';
7 |
8 | import 'demo_data.dart';
9 |
10 | const HtmlEscape htmlEscape = HtmlEscape();
11 |
12 | class FlutterResources extends StatelessWidget {
13 | @override
14 | Widget build(BuildContext context) {
15 | return Scaffold(
16 | appBar: AppBar(
17 | title: Text('Flutter Resources'),
18 | ),
19 | body: showListing(),
20 | );
21 | }
22 |
23 | Widget showListing() {
24 | var items = resources;
25 | return ListView.builder(
26 | itemCount: items.length,
27 | itemBuilder: (BuildContext context, int index) =>
28 | ResourceListItem(items[index]));
29 | }
30 |
31 | Widget showLoading() {
32 | return Align(
33 | alignment: Alignment.center,
34 | child: CircularProgressIndicator(),
35 | );
36 | }
37 |
38 | void openLink(String url) {
39 | var substr = url.toString().split(":");
40 | var myUrl = "https://ptyagicodecamp.github.io" + substr[2];
41 |
42 | UrlUtils.open(myUrl);
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/landingpage/lib/data/res_list_item.dart:
--------------------------------------------------------------------------------
1 | import 'package:landingpage/plugins/url_launcher/url_launcher.dart';
2 | import 'package:flutter/cupertino.dart';
3 | import 'package:flutter/material.dart';
4 |
5 | class ResourceListItem extends StatelessWidget {
6 | final Resource _resource;
7 | const ResourceListItem(this._resource);
8 |
9 | @override
10 | Widget build(BuildContext context) {
11 | return _buildTiles(_resource);
12 | }
13 |
14 | Widget _buildTiles(Resource resource) {
15 | if (resource.children.isEmpty)
16 | return ListTile(
17 | title: Text(
18 | resource.title,
19 | style: TextStyle(fontFamily: 'Montserrat-Regular', fontSize: 20),
20 | ),
21 | subtitle: resource.description.isNotEmpty
22 | ? Text(
23 | resource.description,
24 | style: TextStyle(fontFamily: 'Fresca', fontSize: 18),
25 | )
26 | : null,
27 | onTap: () {
28 | if (resource.link.isNotEmpty) {
29 | UrlUtils.open(resource.link);
30 | }
31 | });
32 |
33 | return ExpansionTile(
34 | key: PageStorageKey(resource),
35 | title: Text(resource.title,
36 | style: TextStyle(fontFamily: 'Montserrat-Medium', fontSize: 20)),
37 | children: resource.children.map(_buildTiles).toList(),
38 | );
39 | }
40 | }
41 |
42 | class Resource {
43 | final String title;
44 | final String description;
45 | final String link;
46 | final List children;
47 |
48 | //intializing empty children
49 | Resource(this.title, this.description, this.link,
50 | [this.children = const []]);
51 |
52 | Resource.fromMap(Map data)
53 | : title = data["title"],
54 | description = data["description"],
55 | link = data["link"],
56 | this.children = const [];
57 |
58 | static List fromData(List