├── .firebase ├── hosting.YnVpbGQvd2Vi.cache └── hosting.cHVibGlj.cache ├── .firebaserc ├── .gitignore ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_portfolio │ │ │ │ └── MainActivity.java │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_portfolio │ │ │ │ └── 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 ├── fonts │ ├── nunitoBold.ttf │ └── nunitoSemiBold.ttf └── images │ ├── about │ └── lucknow.jpg │ ├── artist │ ├── i1.jpg │ ├── i2.jpg │ ├── i3.jpg │ ├── i4.jpg │ └── i5.jpg │ ├── avatar.png │ ├── education │ └── roorkee.jpg │ ├── falogo.png │ ├── intro │ ├── b2.jpg │ └── footer.png │ ├── laptop.png │ ├── lucknow.png │ ├── lucknow_heritage.png │ ├── mobile.png │ ├── pen.png │ ├── plane_text.png │ ├── skills │ └── bike.jpg │ ├── unacademy.png │ ├── unacademy │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 4.png │ └── work │ ├── office.jpg │ ├── workozy.png │ └── workozy_track.png ├── firebase.json ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── 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 ├── main.dart ├── pages │ ├── about_page.dart │ ├── art_page.dart │ ├── contact_page.dart │ ├── drawer.dart │ ├── education_page.dart │ ├── home_page.dart │ ├── intro_page.dart │ ├── skills_page.dart │ └── work_page.dart └── widgets │ ├── animated_heritage.dart │ ├── drawer_list_tile.dart │ ├── page_layout.dart │ ├── plane.dart │ └── web_layout.dart ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── public └── index.html ├── pubspec.lock ├── pubspec.yaml ├── src ├── s1.png ├── s2.png ├── s3.png ├── s4.png ├── s5.png └── s6.png ├── test └── widget_test.dart └── web └── index.html /.firebase/hosting.YnVpbGQvd2Vi.cache: -------------------------------------------------------------------------------- 1 | index.html,1572591760060,3852b0bc7082473035a6f7298a0054bb36d388e359822ad220274a05995fabc4 2 | main.dart.js.deps,1572592144435,d874574fbcd1f9449d318397160ba511d693a6bc87999d73f072502df2fe3d15 3 | assets/AssetManifest.json,1572592147907,3b0c7667678ce8947a76e2e066ba8817e05fcfd03a96da7eefb013ad5a9b4821 4 | assets/FontManifest.json,1572592147908,54e2bafd295c356c70bc3ebb105d8d15ff1d3de93aa573f579473e7d0c64e7ab 5 | assets/assets/fonts/MyIcons.ttf,1544366132000,5397a2d2c385047014e5230770063b4e453afc266e2b2438d0f4daedabcfcdb7 6 | assets/assets/images/avatar.png,1548852378000,ff60d2e421947c8d4271930485a54bf2c90da4413273cd4384126cf8ee3b3c7f 7 | assets/assets/images/lucknow_heritage.png,1548852378000,44be00eb5c14443f6d4c87d1229c7bc5a66e764a355acd3a6474920819b77806 8 | assets/assets/images/unacademy.png,1548907946000,4e6c9fbc72bd99728eb8b7ab9e21db261feaf1d1af1234547dfefe6c9f1c0e8a 9 | assets/assets/images/laptop.png,1548852378000,f7777ba72b00c4a5020b34dfd8d6c48b5c86f3a82ccb3fd822b659946c14301d 10 | assets/assets/images/intro/footer.png,1572517579195,98ea3916bc45c9303b6721cde5d950193ce5b8c0a80946b8044e18b246246cff 11 | assets/packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf,1563284178000,23c65b071bb74de999e1cba726817247637e7f03108f03848da993414c52e397 12 | assets/assets/images/mobile.png,1548852378000,dfc5beee6560e8e68dbf9992452131525701c25323aeee0b588db97bbd0c1e3e 13 | assets/assets/images/work/workozy.png,1572586331211,5a1871d773f80eca44f313193612bcfc97257ce791d76a4150d7d1616877e3d7 14 | assets/assets/images/pen.png,1548852378000,0d83902d41491a6f8594b855bea515539c74b8633c5061c8bd85f9f10ba1f0e2 15 | assets/assets/images/unacademy/3.png,1548913420000,6c3655b9293adf1075ff4d00352122a3895626146ead28cd83637bb4ff7668f6 16 | assets/assets/fonts/nunitoBold.ttf,1544366132000,01faf3918ce6a75f19431bab6d5b76029077c655e7e82bca11595c93cee88fcf 17 | assets/assets/fonts/nunitoSemiBold.ttf,1544366132000,53dbc8ee0ad56f662f68628ea0af9f4cc756fa48d424e5fcc744c73a619dcddf 18 | assets/packages/cupertino_icons/assets/CupertinoIcons.ttf,1505776421000,c57259021b0d93a738c977f00ea729ef6e9047995b4ad879ad5010cb35e002ed 19 | assets/assets/images/unacademy/1.png,1548913420000,cffb2c0b4989bffb9bcdde4249e72b37f13ca56c2d2da327aec068afee6e6a54 20 | assets/assets/images/unacademy/4.png,1548913420000,c0530647cb37374690163f5f52ff0180ff42ccb38c98e0f1fcebe9dfaebd1814 21 | assets/fonts/MaterialIcons-Regular.ttf,1475273174000,49f9a5d2c31ecd331d178c6c3d587181ce635721e46240a8547f0a5374f3257d 22 | assets/assets/images/unacademy/2.png,1548913420000,ced4f590c566c9515459c9b96e38f63a67a22f2378b81b9660f06471e1260fa2 23 | assets/assets/images/about/lucknow.jpg,1572584446771,73eee2886997a14d1ba6169fb91dcdb767cb42f795c99d8d84f5e9bb02033f74 24 | assets/assets/images/work/office.jpg,1572587264849,e6348c04b7a334614db7983f59942d676158f917d3a199998b874eeb85671e54 25 | assets/assets/images/lucknow.png,1548852378000,eb0b86861b5f7ac1eddb887145f55785b8e677cf9bb5c1e336ea8130eef6456a 26 | assets/packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf,1563284178000,96961d51d13c8b0969cbae45ff40a31a06ab79f928907f0c9a702c6c5d52a998 27 | assets/assets/images/skills/bike.jpg,1572589339714,3cda1ce10364040b44542bde1dff38605504218b740009a2b7f5e20cfbd3557f 28 | assets/packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf,1563284178000,f036df877dd73ecfd441f4ccd5882053f7ee34b470cdfcc089902609fda3df94 29 | assets/assets/images/plane_text.png,1548852378000,8ccbc1e87e3916b7b5081a82bdba2cde85e737fa92d1a679f8f192ec4b2e67ae 30 | assets/assets/images/education/roorkee.jpg,1572585238928,5e19a728a8c1574bb02bcbbce172687532caa8875eded18d462c3a3406c19fe3 31 | assets/assets/images/intro/b2.jpg,1572517042950,975337b4159df8770590df6b72bec5f09129bbfd31391c5f0028fb7da323dca7 32 | assets/LICENSE,1572592147908,60a32b74933f0204b02318a9a6495e04e03d60815d91aa2ef2b3bbcf808661b0 33 | assets/assets/images/artist/i5.jpg,1548852244000,3dd9c75e8ee8a61773953eeb11764a3eff1a9d09de0840d5eb82a92b659574f0 34 | assets/assets/images/artist/i2.jpg,1548852244000,d741e9e842b363da62e3009b3796d1ec9df2f92738ae61d13b3716c21388f1b4 35 | assets/assets/images/artist/i4.jpg,1548852244000,fa5892c85ddc7c96e25404cb0767c15b93b90314cd0b2b578599fb7d1d924953 36 | assets/assets/images/artist/i3.jpg,1548852244000,433f2d4977bee10c6a5a1475f43e84a79ee7729f33d6db67da64933b4fe7ea85 37 | assets/assets/images/artist/i1.jpg,1548852244000,927b0164e866f4ba812ee935c4b6e30832de8821125d2cca86389c32a284a208 38 | main.dart.js,1572592143895,0751de3c9d7effdf6251d1c985a8a4e76aab1dec8fdbd46e6ee93c277618e1ef 39 | assets/assets/images/work/workozy_track.png,1572586874491,31d40bf13d49d33cfcafa3efc5cdf1daf3d17754c6b5921d9b050cad1837d9b9 40 | main.dart.js.map,1572592144434,56b1b48cc5892f5d2d12d81ab91d8ce5b97bb93c6836fd2d20c76621e04b4bba 41 | -------------------------------------------------------------------------------- /.firebase/hosting.cHVibGlj.cache: -------------------------------------------------------------------------------- 1 | index.html,1572592012651,3dbf48ba40206cbc0e81f3836d2ee1b361ee92ac23ddd2be1dff5ef115cf52d5 2 | -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "portfolio-99766" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.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 | # Web related 33 | lib/generated_plugin_registrant.dart 34 | 35 | # Exceptions to above rules. 36 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages 37 | -------------------------------------------------------------------------------- /.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: 1946fc4da0f80c522d7e3ae7d4f7309908ed86f2 8 | channel: dev 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Portfolio of Ayush P Gupta [![GitHub stars](https://img.shields.io/github/stars/apgapg/flutter_portfolio.svg?style=social)](https://github.com/apgapg/flutter_portfolio) [![Twitter Follow](https://img.shields.io/twitter/url/https/@ayushpgupta.svg?style=social)](https://twitter.com/ayushpgupta) ![GitHub last commit](https://img.shields.io/github/last-commit/apgapg/flutter_portfolio.svg) [![Website shields.io](https://img.shields.io/website-up-down-green-red/http/shields.io.svg)](https://apgapg.github.io/)[![Open Source Love](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/apgapg/flutter_portfolio) [![style: effective dart](https://img.shields.io/badge/style-effective_dart-40c4ff.svg)](https://github.com/tenhobi/effective_dart) 2 | 3 | This repo contains the production version of portfolio website of github.com/apgapg (Ayush P Gupta). 4 | 5 | This website is built using Flutter SDK. 6 | 7 | Live Demo: [https://apgapg.github.io/flutter_portfolio/](https://apgapg.github.io/flutter_portfolio/) 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /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 from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 26 | 27 | android { 28 | compileSdkVersion 28 29 | 30 | lintOptions { 31 | disable 'InvalidPackage' 32 | } 33 | 34 | defaultConfig { 35 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 36 | applicationId "com.example.flutter_portfolio" 37 | minSdkVersion 16 38 | targetSdkVersion 28 39 | versionCode flutterVersionCode.toInteger() 40 | versionName flutterVersionName 41 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 42 | } 43 | 44 | buildTypes { 45 | release { 46 | // TODO: Add your own signing config for the release build. 47 | // Signing with the debug keys for now, so `flutter run --release` works. 48 | signingConfig signingConfigs.debug 49 | } 50 | } 51 | } 52 | 53 | flutter { 54 | source '../..' 55 | } 56 | 57 | dependencies { 58 | testImplementation 'junit:junit:4.12' 59 | androidTestImplementation 'androidx.test:runner:1.1.1' 60 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' 61 | } 62 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 8 | 12 | 19 | 23 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flutter_portfolio/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.flutter_portfolio; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_portfolio/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.flutter_portfolio 2 | 3 | import android.os.Bundle 4 | import io.flutter.app.FlutterActivity 5 | import io.flutter.plugins.GeneratedPluginRegistrant 6 | 7 | class MainActivity: FlutterActivity() { 8 | override fun onCreate(savedInstanceState: Bundle?) { 9 | super.onCreate(savedInstanceState) 10 | GeneratedPluginRegistrant.registerWith(this) 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.5.0' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 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.6.2-all.zip 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /assets/fonts/nunitoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/fonts/nunitoBold.ttf -------------------------------------------------------------------------------- /assets/fonts/nunitoSemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/fonts/nunitoSemiBold.ttf -------------------------------------------------------------------------------- /assets/images/about/lucknow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/about/lucknow.jpg -------------------------------------------------------------------------------- /assets/images/artist/i1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/artist/i1.jpg -------------------------------------------------------------------------------- /assets/images/artist/i2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/artist/i2.jpg -------------------------------------------------------------------------------- /assets/images/artist/i3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/artist/i3.jpg -------------------------------------------------------------------------------- /assets/images/artist/i4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/artist/i4.jpg -------------------------------------------------------------------------------- /assets/images/artist/i5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/artist/i5.jpg -------------------------------------------------------------------------------- /assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/avatar.png -------------------------------------------------------------------------------- /assets/images/education/roorkee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/education/roorkee.jpg -------------------------------------------------------------------------------- /assets/images/falogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/falogo.png -------------------------------------------------------------------------------- /assets/images/intro/b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/intro/b2.jpg -------------------------------------------------------------------------------- /assets/images/intro/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/intro/footer.png -------------------------------------------------------------------------------- /assets/images/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/laptop.png -------------------------------------------------------------------------------- /assets/images/lucknow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/lucknow.png -------------------------------------------------------------------------------- /assets/images/lucknow_heritage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/lucknow_heritage.png -------------------------------------------------------------------------------- /assets/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/mobile.png -------------------------------------------------------------------------------- /assets/images/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/pen.png -------------------------------------------------------------------------------- /assets/images/plane_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/plane_text.png -------------------------------------------------------------------------------- /assets/images/skills/bike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/skills/bike.jpg -------------------------------------------------------------------------------- /assets/images/unacademy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/unacademy.png -------------------------------------------------------------------------------- /assets/images/unacademy/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/unacademy/1.png -------------------------------------------------------------------------------- /assets/images/unacademy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/unacademy/2.png -------------------------------------------------------------------------------- /assets/images/unacademy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/unacademy/3.png -------------------------------------------------------------------------------- /assets/images/unacademy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/unacademy/4.png -------------------------------------------------------------------------------- /assets/images/work/office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/work/office.jpg -------------------------------------------------------------------------------- /assets/images/work/workozy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/work/workozy.png -------------------------------------------------------------------------------- /assets/images/work/workozy_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/assets/images/work/workozy_track.png -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "hosting": { 3 | "public": "build/web", 4 | "ignore": [ 5 | "firebase.json", 6 | "**/.*", 7 | "**/node_modules/**" 8 | ], 9 | "rewrites": [ 10 | { 11 | "source": "**", 12 | "destination": "/index.html" 13 | } 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.mode2v3 3 | *.moved-aside 4 | *.pbxuser 5 | *.perspectivev3 6 | **/*sync/ 7 | .sconsign.dblite 8 | .tags* 9 | **/.vagrant/ 10 | **/DerivedData/ 11 | Icon? 12 | **/Pods/ 13 | **/.symlinks/ 14 | profile 15 | xcuserdata 16 | **/.generated/ 17 | Flutter/App.framework 18 | Flutter/Flutter.framework 19 | Flutter/Generated.xcconfig 20 | Flutter/app.flx 21 | Flutter/app.zip 22 | Flutter/flutter_assets/ 23 | Flutter/flutter_export_environment.sh 24 | ServiceDefinitions.json 25 | Runner/GeneratedPluginRegistrant.* 26 | 27 | # Exceptions to above rules. 28 | !default.mode1v3 29 | !default.mode2v3 30 | !default.pbxuser 31 | !default.perspectivev3 32 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 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 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 18 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 19 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXCopyFilesBuildPhase section */ 23 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 24 | isa = PBXCopyFilesBuildPhase; 25 | buildActionMask = 2147483647; 26 | dstPath = ""; 27 | dstSubfolderSpec = 10; 28 | files = ( 29 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, 30 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, 31 | ); 32 | name = "Embed Frameworks"; 33 | runOnlyForDeploymentPostprocessing = 0; 34 | }; 35 | /* End PBXCopyFilesBuildPhase section */ 36 | 37 | /* Begin PBXFileReference section */ 38 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 39 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 40 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 41 | 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; }; 42 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 43 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 44 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 45 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 46 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 47 | 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; }; 48 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 50 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 51 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 52 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 53 | /* End PBXFileReference section */ 54 | 55 | /* Begin PBXFrameworksBuildPhase section */ 56 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 57 | isa = PBXFrameworksBuildPhase; 58 | buildActionMask = 2147483647; 59 | files = ( 60 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, 61 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, 62 | ); 63 | runOnlyForDeploymentPostprocessing = 0; 64 | }; 65 | /* End PBXFrameworksBuildPhase section */ 66 | 67 | /* Begin PBXGroup section */ 68 | 9740EEB11CF90186004384FC /* Flutter */ = { 69 | isa = PBXGroup; 70 | children = ( 71 | 3B80C3931E831B6300D905FE /* App.framework */, 72 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 73 | 9740EEBA1CF902C7004384FC /* Flutter.framework */, 74 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 75 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 76 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 77 | ); 78 | name = Flutter; 79 | sourceTree = ""; 80 | }; 81 | 97C146E51CF9000F007C117D = { 82 | isa = PBXGroup; 83 | children = ( 84 | 9740EEB11CF90186004384FC /* Flutter */, 85 | 97C146F01CF9000F007C117D /* Runner */, 86 | 97C146EF1CF9000F007C117D /* Products */, 87 | ); 88 | sourceTree = ""; 89 | }; 90 | 97C146EF1CF9000F007C117D /* Products */ = { 91 | isa = PBXGroup; 92 | children = ( 93 | 97C146EE1CF9000F007C117D /* Runner.app */, 94 | ); 95 | name = Products; 96 | sourceTree = ""; 97 | }; 98 | 97C146F01CF9000F007C117D /* Runner */ = { 99 | isa = PBXGroup; 100 | children = ( 101 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 102 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 103 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 104 | 97C147021CF9000F007C117D /* Info.plist */, 105 | 97C146F11CF9000F007C117D /* Supporting Files */, 106 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 107 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 108 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 109 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 110 | ); 111 | path = Runner; 112 | sourceTree = ""; 113 | }; 114 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | ); 118 | name = "Supporting Files"; 119 | sourceTree = ""; 120 | }; 121 | /* End PBXGroup section */ 122 | 123 | /* Begin PBXNativeTarget section */ 124 | 97C146ED1CF9000F007C117D /* Runner */ = { 125 | isa = PBXNativeTarget; 126 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 127 | buildPhases = ( 128 | 9740EEB61CF901F6004384FC /* Run Script */, 129 | 97C146EA1CF9000F007C117D /* Sources */, 130 | 97C146EB1CF9000F007C117D /* Frameworks */, 131 | 97C146EC1CF9000F007C117D /* Resources */, 132 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 133 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 134 | ); 135 | buildRules = ( 136 | ); 137 | dependencies = ( 138 | ); 139 | name = Runner; 140 | productName = Runner; 141 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 142 | productType = "com.apple.product-type.application"; 143 | }; 144 | /* End PBXNativeTarget section */ 145 | 146 | /* Begin PBXProject section */ 147 | 97C146E61CF9000F007C117D /* Project object */ = { 148 | isa = PBXProject; 149 | attributes = { 150 | LastUpgradeCheck = 1020; 151 | ORGANIZATIONNAME = "The Chromium Authors"; 152 | TargetAttributes = { 153 | 97C146ED1CF9000F007C117D = { 154 | CreatedOnToolsVersion = 7.3.1; 155 | LastSwiftMigration = 0910; 156 | }; 157 | }; 158 | }; 159 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 160 | compatibilityVersion = "Xcode 3.2"; 161 | developmentRegion = en; 162 | hasScannedForEncodings = 0; 163 | knownRegions = ( 164 | en, 165 | Base, 166 | ); 167 | mainGroup = 97C146E51CF9000F007C117D; 168 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 169 | projectDirPath = ""; 170 | projectRoot = ""; 171 | targets = ( 172 | 97C146ED1CF9000F007C117D /* Runner */, 173 | ); 174 | }; 175 | /* End PBXProject section */ 176 | 177 | /* Begin PBXResourcesBuildPhase section */ 178 | 97C146EC1CF9000F007C117D /* Resources */ = { 179 | isa = PBXResourcesBuildPhase; 180 | buildActionMask = 2147483647; 181 | files = ( 182 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 183 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 184 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 185 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 186 | ); 187 | runOnlyForDeploymentPostprocessing = 0; 188 | }; 189 | /* End PBXResourcesBuildPhase section */ 190 | 191 | /* Begin PBXShellScriptBuildPhase section */ 192 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 193 | isa = PBXShellScriptBuildPhase; 194 | buildActionMask = 2147483647; 195 | files = ( 196 | ); 197 | inputPaths = ( 198 | ); 199 | name = "Thin Binary"; 200 | outputPaths = ( 201 | ); 202 | runOnlyForDeploymentPostprocessing = 0; 203 | shellPath = /bin/sh; 204 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; 205 | }; 206 | 9740EEB61CF901F6004384FC /* Run Script */ = { 207 | isa = PBXShellScriptBuildPhase; 208 | buildActionMask = 2147483647; 209 | files = ( 210 | ); 211 | inputPaths = ( 212 | ); 213 | name = "Run Script"; 214 | outputPaths = ( 215 | ); 216 | runOnlyForDeploymentPostprocessing = 0; 217 | shellPath = /bin/sh; 218 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 219 | }; 220 | /* End PBXShellScriptBuildPhase section */ 221 | 222 | /* Begin PBXSourcesBuildPhase section */ 223 | 97C146EA1CF9000F007C117D /* Sources */ = { 224 | isa = PBXSourcesBuildPhase; 225 | buildActionMask = 2147483647; 226 | files = ( 227 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 228 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 229 | ); 230 | runOnlyForDeploymentPostprocessing = 0; 231 | }; 232 | /* End PBXSourcesBuildPhase section */ 233 | 234 | /* Begin PBXVariantGroup section */ 235 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 236 | isa = PBXVariantGroup; 237 | children = ( 238 | 97C146FB1CF9000F007C117D /* Base */, 239 | ); 240 | name = Main.storyboard; 241 | sourceTree = ""; 242 | }; 243 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 244 | isa = PBXVariantGroup; 245 | children = ( 246 | 97C147001CF9000F007C117D /* Base */, 247 | ); 248 | name = LaunchScreen.storyboard; 249 | sourceTree = ""; 250 | }; 251 | /* End PBXVariantGroup section */ 252 | 253 | /* Begin XCBuildConfiguration section */ 254 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 255 | isa = XCBuildConfiguration; 256 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 257 | buildSettings = { 258 | ALWAYS_SEARCH_USER_PATHS = NO; 259 | CLANG_ANALYZER_NONNULL = YES; 260 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 261 | CLANG_CXX_LIBRARY = "libc++"; 262 | CLANG_ENABLE_MODULES = YES; 263 | CLANG_ENABLE_OBJC_ARC = YES; 264 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 265 | CLANG_WARN_BOOL_CONVERSION = YES; 266 | CLANG_WARN_COMMA = YES; 267 | CLANG_WARN_CONSTANT_CONVERSION = YES; 268 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 269 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 270 | CLANG_WARN_EMPTY_BODY = YES; 271 | CLANG_WARN_ENUM_CONVERSION = YES; 272 | CLANG_WARN_INFINITE_RECURSION = YES; 273 | CLANG_WARN_INT_CONVERSION = YES; 274 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 275 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 276 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 277 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 278 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 279 | CLANG_WARN_STRICT_PROTOTYPES = YES; 280 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 281 | CLANG_WARN_UNREACHABLE_CODE = YES; 282 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 283 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 284 | COPY_PHASE_STRIP = NO; 285 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 286 | ENABLE_NS_ASSERTIONS = NO; 287 | ENABLE_STRICT_OBJC_MSGSEND = YES; 288 | GCC_C_LANGUAGE_STANDARD = gnu99; 289 | GCC_NO_COMMON_BLOCKS = YES; 290 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 291 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 292 | GCC_WARN_UNDECLARED_SELECTOR = YES; 293 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 294 | GCC_WARN_UNUSED_FUNCTION = YES; 295 | GCC_WARN_UNUSED_VARIABLE = YES; 296 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 297 | MTL_ENABLE_DEBUG_INFO = NO; 298 | SDKROOT = iphoneos; 299 | SUPPORTED_PLATFORMS = iphoneos; 300 | TARGETED_DEVICE_FAMILY = "1,2"; 301 | VALIDATE_PRODUCT = YES; 302 | }; 303 | name = Profile; 304 | }; 305 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 306 | isa = XCBuildConfiguration; 307 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 308 | buildSettings = { 309 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 310 | CLANG_ENABLE_MODULES = YES; 311 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 312 | ENABLE_BITCODE = NO; 313 | FRAMEWORK_SEARCH_PATHS = ( 314 | "$(inherited)", 315 | "$(PROJECT_DIR)/Flutter", 316 | ); 317 | INFOPLIST_FILE = Runner/Info.plist; 318 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 319 | LIBRARY_SEARCH_PATHS = ( 320 | "$(inherited)", 321 | "$(PROJECT_DIR)/Flutter", 322 | ); 323 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterPortfolio; 324 | PRODUCT_NAME = "$(TARGET_NAME)"; 325 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 326 | SWIFT_VERSION = 4.0; 327 | VERSIONING_SYSTEM = "apple-generic"; 328 | }; 329 | name = Profile; 330 | }; 331 | 97C147031CF9000F007C117D /* Debug */ = { 332 | isa = XCBuildConfiguration; 333 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 334 | buildSettings = { 335 | ALWAYS_SEARCH_USER_PATHS = NO; 336 | CLANG_ANALYZER_NONNULL = YES; 337 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 338 | CLANG_CXX_LIBRARY = "libc++"; 339 | CLANG_ENABLE_MODULES = YES; 340 | CLANG_ENABLE_OBJC_ARC = YES; 341 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 342 | CLANG_WARN_BOOL_CONVERSION = YES; 343 | CLANG_WARN_COMMA = YES; 344 | CLANG_WARN_CONSTANT_CONVERSION = YES; 345 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 346 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 347 | CLANG_WARN_EMPTY_BODY = YES; 348 | CLANG_WARN_ENUM_CONVERSION = YES; 349 | CLANG_WARN_INFINITE_RECURSION = YES; 350 | CLANG_WARN_INT_CONVERSION = YES; 351 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 352 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 353 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 354 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 355 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 356 | CLANG_WARN_STRICT_PROTOTYPES = YES; 357 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 358 | CLANG_WARN_UNREACHABLE_CODE = YES; 359 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 360 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 361 | COPY_PHASE_STRIP = NO; 362 | DEBUG_INFORMATION_FORMAT = dwarf; 363 | ENABLE_STRICT_OBJC_MSGSEND = YES; 364 | ENABLE_TESTABILITY = YES; 365 | GCC_C_LANGUAGE_STANDARD = gnu99; 366 | GCC_DYNAMIC_NO_PIC = NO; 367 | GCC_NO_COMMON_BLOCKS = YES; 368 | GCC_OPTIMIZATION_LEVEL = 0; 369 | GCC_PREPROCESSOR_DEFINITIONS = ( 370 | "DEBUG=1", 371 | "$(inherited)", 372 | ); 373 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 374 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 375 | GCC_WARN_UNDECLARED_SELECTOR = YES; 376 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 377 | GCC_WARN_UNUSED_FUNCTION = YES; 378 | GCC_WARN_UNUSED_VARIABLE = YES; 379 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 380 | MTL_ENABLE_DEBUG_INFO = YES; 381 | ONLY_ACTIVE_ARCH = YES; 382 | SDKROOT = iphoneos; 383 | TARGETED_DEVICE_FAMILY = "1,2"; 384 | }; 385 | name = Debug; 386 | }; 387 | 97C147041CF9000F007C117D /* Release */ = { 388 | isa = XCBuildConfiguration; 389 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 390 | buildSettings = { 391 | ALWAYS_SEARCH_USER_PATHS = NO; 392 | CLANG_ANALYZER_NONNULL = YES; 393 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 394 | CLANG_CXX_LIBRARY = "libc++"; 395 | CLANG_ENABLE_MODULES = YES; 396 | CLANG_ENABLE_OBJC_ARC = YES; 397 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 398 | CLANG_WARN_BOOL_CONVERSION = YES; 399 | CLANG_WARN_COMMA = YES; 400 | CLANG_WARN_CONSTANT_CONVERSION = YES; 401 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 402 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 403 | CLANG_WARN_EMPTY_BODY = YES; 404 | CLANG_WARN_ENUM_CONVERSION = YES; 405 | CLANG_WARN_INFINITE_RECURSION = YES; 406 | CLANG_WARN_INT_CONVERSION = YES; 407 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 408 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 409 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 410 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 411 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 412 | CLANG_WARN_STRICT_PROTOTYPES = YES; 413 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 414 | CLANG_WARN_UNREACHABLE_CODE = YES; 415 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 416 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 417 | COPY_PHASE_STRIP = NO; 418 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 419 | ENABLE_NS_ASSERTIONS = NO; 420 | ENABLE_STRICT_OBJC_MSGSEND = YES; 421 | GCC_C_LANGUAGE_STANDARD = gnu99; 422 | GCC_NO_COMMON_BLOCKS = YES; 423 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 424 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 425 | GCC_WARN_UNDECLARED_SELECTOR = YES; 426 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 427 | GCC_WARN_UNUSED_FUNCTION = YES; 428 | GCC_WARN_UNUSED_VARIABLE = YES; 429 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 430 | MTL_ENABLE_DEBUG_INFO = NO; 431 | SDKROOT = iphoneos; 432 | SUPPORTED_PLATFORMS = iphoneos; 433 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 434 | TARGETED_DEVICE_FAMILY = "1,2"; 435 | VALIDATE_PRODUCT = YES; 436 | }; 437 | name = Release; 438 | }; 439 | 97C147061CF9000F007C117D /* Debug */ = { 440 | isa = XCBuildConfiguration; 441 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 442 | buildSettings = { 443 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 444 | CLANG_ENABLE_MODULES = YES; 445 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 446 | ENABLE_BITCODE = NO; 447 | FRAMEWORK_SEARCH_PATHS = ( 448 | "$(inherited)", 449 | "$(PROJECT_DIR)/Flutter", 450 | ); 451 | INFOPLIST_FILE = Runner/Info.plist; 452 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 453 | LIBRARY_SEARCH_PATHS = ( 454 | "$(inherited)", 455 | "$(PROJECT_DIR)/Flutter", 456 | ); 457 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterPortfolio; 458 | PRODUCT_NAME = "$(TARGET_NAME)"; 459 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 460 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 461 | SWIFT_VERSION = 4.0; 462 | VERSIONING_SYSTEM = "apple-generic"; 463 | }; 464 | name = Debug; 465 | }; 466 | 97C147071CF9000F007C117D /* Release */ = { 467 | isa = XCBuildConfiguration; 468 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 469 | buildSettings = { 470 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 471 | CLANG_ENABLE_MODULES = YES; 472 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 473 | ENABLE_BITCODE = NO; 474 | FRAMEWORK_SEARCH_PATHS = ( 475 | "$(inherited)", 476 | "$(PROJECT_DIR)/Flutter", 477 | ); 478 | INFOPLIST_FILE = Runner/Info.plist; 479 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 480 | LIBRARY_SEARCH_PATHS = ( 481 | "$(inherited)", 482 | "$(PROJECT_DIR)/Flutter", 483 | ); 484 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterPortfolio; 485 | PRODUCT_NAME = "$(TARGET_NAME)"; 486 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 487 | SWIFT_VERSION = 4.0; 488 | VERSIONING_SYSTEM = "apple-generic"; 489 | }; 490 | name = Release; 491 | }; 492 | /* End XCBuildConfiguration section */ 493 | 494 | /* Begin XCConfigurationList section */ 495 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 496 | isa = XCConfigurationList; 497 | buildConfigurations = ( 498 | 97C147031CF9000F007C117D /* Debug */, 499 | 97C147041CF9000F007C117D /* Release */, 500 | 249021D3217E4FDB00AE95B9 /* Profile */, 501 | ); 502 | defaultConfigurationIsVisible = 0; 503 | defaultConfigurationName = Release; 504 | }; 505 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 506 | isa = XCConfigurationList; 507 | buildConfigurations = ( 508 | 97C147061CF9000F007C117D /* Debug */, 509 | 97C147071CF9000F007C117D /* Release */, 510 | 249021D4217E4FDB00AE95B9 /* Profile */, 511 | ); 512 | defaultConfigurationIsVisible = 0; 513 | defaultConfigurationName = Release; 514 | }; 515 | /* End XCConfigurationList section */ 516 | 517 | }; 518 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 519 | } 520 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /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. -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | flutter_portfolio 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 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | 3 | import 'package:flutter/foundation.dart'; 4 | import 'package:flutter/material.dart'; 5 | import 'package:flutter_portfolio/pages/home_page.dart'; 6 | 7 | // Sets a platform override for desktop to avoid exceptions. See 8 | // https://flutter.dev/desktop#target-platform-override for more info. 9 | void _enablePlatformOverrideForDesktop() { 10 | if (!kIsWeb && (Platform.isMacOS || Platform.isWindows || Platform.isLinux)) { 11 | debugDefaultTargetPlatformOverride = TargetPlatform.fuchsia; 12 | } 13 | } 14 | 15 | void main() { 16 | _enablePlatformOverrideForDesktop(); 17 | runApp(MyApp()); 18 | } 19 | 20 | class MyApp extends StatelessWidget { 21 | // This widget is the root of your application. 22 | @override 23 | Widget build(BuildContext context) { 24 | return MaterialApp( 25 | title: 'Ayush P Gupta', 26 | theme: ThemeData( 27 | primarySwatch: Colors.blueGrey, 28 | fontFamily: 'Nunito', 29 | scaffoldBackgroundColor: Colors.white, 30 | ), 31 | darkTheme: ThemeData( 32 | primarySwatch: Colors.blueGrey, 33 | fontFamily: 'Nunito', 34 | scaffoldBackgroundColor: Colors.white, 35 | ), 36 | debugShowCheckedModeBanner: false, 37 | home: HomePage(), 38 | ); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /lib/pages/about_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_portfolio/widgets/animated_heritage.dart'; 3 | import 'package:flutter_portfolio/widgets/plane.dart'; 4 | import 'package:flutter_portfolio/widgets/web_layout.dart'; 5 | 6 | class AboutPage extends StatelessWidget { 7 | @override 8 | Widget build(BuildContext context) { 9 | final body = Flexible( 10 | fit: FlexFit.tight, 11 | flex: 2, 12 | child: Container( 13 | padding: EdgeInsets.symmetric(vertical: 16), 14 | child: Stack( 15 | children: [ 16 | Positioned( 17 | bottom: 0, 18 | child: Opacity( 19 | opacity: 0.6, 20 | child: Image.asset( 21 | 'assets/images/intro/footer.png', 22 | fit: BoxFit.fitWidth, 23 | ), 24 | ), 25 | ), 26 | Container( 27 | padding: EdgeInsets.all(32), 28 | child: Column( 29 | mainAxisAlignment: MainAxisAlignment.center, 30 | children: [ 31 | Plane(), 32 | Expanded( 33 | child: Column( 34 | mainAxisSize: MainAxisSize.min, 35 | mainAxisAlignment: MainAxisAlignment.center, 36 | crossAxisAlignment: CrossAxisAlignment.stretch, 37 | children: [ 38 | Text( 39 | "I AM FROM", 40 | style: TextStyle( 41 | color: Colors.blue, 42 | fontWeight: FontWeight.bold, 43 | fontSize: 18, 44 | ), 45 | ), 46 | SizedBox( 47 | height: 32, 48 | ), 49 | Text( 50 | "LUCKNOW", 51 | style: TextStyle( 52 | color: Colors.black87, 53 | fontWeight: FontWeight.bold, 54 | fontSize: 28, 55 | ), 56 | ), 57 | SizedBox( 58 | height: 16, 59 | ), 60 | Text( 61 | "A City of Nawabs, A City of Tehzeeb.\n\nEver since from childhood, I have been an inseparable part of this 'AAP' culture.", 62 | style: TextStyle( 63 | color: Colors.black54, 64 | fontSize: 16, 65 | ), 66 | softWrap: true, 67 | ), 68 | ], 69 | ), 70 | ), 71 | AnimatedHeritage(), 72 | ], 73 | ), 74 | ), 75 | ], 76 | ), 77 | ), 78 | ); 79 | final image = Image.asset( 80 | 'assets/images/about/lucknow.jpg', 81 | ); 82 | return WebLayout( 83 | mobileLayout: Row( 84 | children: [ 85 | body, 86 | ], 87 | ), 88 | webLayout: Row( 89 | children: [ 90 | body, 91 | image, 92 | ], 93 | ), 94 | ); 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /lib/pages/art_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:extended_image/extended_image.dart'; 2 | import 'package:flutter/material.dart'; 3 | 4 | List _list = [ 5 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20190726_004329%20(1).jpg?alt=media&token=2f7f196d-225d-473d-9093-85f363f9ca08", 6 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20191021_140849%20(1).jpg?alt=media&token=aad547a9-03bd-4811-977b-06924ffbf0ac", 7 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20191102_183725%20(1).jpg?alt=media&token=4438162b-3857-48b6-906c-29d6b3ad0843", 8 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20190727_005045%20(1).jpg?alt=media&token=fdf2dc12-dd53-42e3-87c8-a137c1ef68a8", 9 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20191102_165228%20(1).jpg?alt=media&token=1d8240a1-6df5-4857-9201-7bfc0aab1ad3", 10 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20190817_014151%20(1).jpg?alt=media&token=84f8fa85-9950-4006-b4e6-9dad5bec037f", 11 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20190722_232805.jpeg?alt=media&token=7c636d81-09cd-4ffd-ae5c-68608dbe08e4", 12 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20190621_165222.jpeg?alt=media&token=9610d0ca-f8ed-4b27-8a96-5bd550bf01a5", 13 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20190505_185546.jpeg?alt=media&token=5db9e829-7c92-400d-be5b-7efb11cc5dbe", 14 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20190430_083859_249.jpeg?alt=media&token=494265bb-2c51-48a2-bc15-4f1b622e9955", 15 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20190425_113003_895.jpeg?alt=media&token=038f3ba4-e67f-4445-92dc-37497b335dfe", 16 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20190425_073959_358.jpeg?alt=media&token=d83f4da4-4f5a-40a0-a088-cfa8d130fcb5", 17 | "https://firebasestorage.googleapis.com/v0/b/portfolio-99766.appspot.com/o/arts%2FIMG_20190424_214848_071.jpeg?alt=media&token=7c5cea07-ba41-4350-8d3e-e45d7c5707b0", 18 | ]; 19 | 20 | class ArtPage extends StatelessWidget { 21 | @override 22 | Widget build(BuildContext context) { 23 | return Row( 24 | children: [ 25 | Expanded( 26 | child: Stack( 27 | children: [ 28 | Positioned( 29 | bottom: 0, 30 | child: Opacity( 31 | opacity: 0.6, 32 | child: Image.asset( 33 | 'assets/images/intro/footer.png', 34 | fit: BoxFit.fitWidth, 35 | ), 36 | ), 37 | ), 38 | ListView( 39 | children: [ 40 | SizedBox( 41 | height: 32, 42 | ), 43 | Padding( 44 | padding: const EdgeInsets.symmetric(horizontal: 32.0), 45 | child: Text( 46 | "MY ARTWORKS and SKETCHES", 47 | style: TextStyle( 48 | color: Colors.blue, 49 | fontWeight: FontWeight.bold, 50 | fontSize: 18, 51 | ), 52 | ), 53 | ), 54 | SizedBox( 55 | height: 16, 56 | ), 57 | GridView( 58 | shrinkWrap: true, 59 | padding: 60 | EdgeInsets.symmetric(horizontal: 16, vertical: 16), 61 | gridDelegate: SliverGridDelegateWithMaxCrossAxisExtent( 62 | maxCrossAxisExtent: 200, 63 | childAspectRatio: 1.0, 64 | ), 65 | children: [ 66 | for (var url in _list) 67 | InkWell( 68 | child: Image.network( 69 | url, 70 | fit: BoxFit.cover, 71 | //cache: true, 72 | ), 73 | onTap: () { 74 | _onImageTap(url, context); 75 | }, 76 | ), 77 | ], 78 | ), 79 | ], 80 | ), 81 | ], 82 | ), 83 | ), 84 | /* Image.asset( 85 | 'assets/images/skills/bike.jpg', 86 | ),*/ 87 | ], 88 | ); 89 | } 90 | 91 | void _onImageTap(String url, BuildContext context) { 92 | showDialog( 93 | context: context, 94 | child: SimpleDialog( 95 | contentPadding: EdgeInsets.all(16), 96 | children: [ 97 | Stack( 98 | children: [ 99 | Image.network( 100 | url, 101 | fit: BoxFit.cover, 102 | //cache: true, 103 | ), 104 | Positioned( 105 | right: 0, 106 | top: 0, 107 | child: Material( 108 | color: Colors.transparent, 109 | type: MaterialType.circle, 110 | child: IconButton( 111 | icon: Icon(Icons.close), 112 | onPressed: () { 113 | Navigator.pop(context); 114 | }, 115 | ), 116 | ), 117 | ) 118 | ], 119 | ) 120 | ], 121 | ), 122 | ); 123 | } 124 | } 125 | -------------------------------------------------------------------------------- /lib/pages/contact_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class ContactPage extends StatelessWidget { 4 | @override 5 | Widget build(BuildContext context) { 6 | return Row( 7 | children: [ 8 | Expanded( 9 | child: Stack( 10 | children: [ 11 | Positioned( 12 | bottom: 0, 13 | child: Opacity( 14 | opacity: 0.6, 15 | child: Image.asset( 16 | 'assets/images/intro/footer.png', 17 | fit: BoxFit.fitWidth, 18 | ), 19 | ), 20 | ), 21 | Container( 22 | padding: EdgeInsets.all(32), 23 | alignment: Alignment.center, 24 | child: Column( 25 | mainAxisAlignment: MainAxisAlignment.center, 26 | children: [ 27 | Text( 28 | "CONTACT ME", 29 | style: TextStyle( 30 | color: Colors.blue, 31 | fontWeight: FontWeight.bold, 32 | fontSize: 18, 33 | ), 34 | ), 35 | SizedBox( 36 | height: 24, 37 | ), 38 | Container( 39 | margin: EdgeInsets.symmetric(vertical: 8), 40 | child: Column( 41 | crossAxisAlignment: CrossAxisAlignment.start, 42 | children: [ 43 | Text( 44 | "- EMAIL: ayushpguptaapg@gmail.com" 45 | "\n- GITHUB: @apgapg" 46 | "\n- INSTAGRAM: @ayushpgupta" 47 | "\n- MEDIUM: @ayushpguptaapg" 48 | "\n- LINKEDIN: @ayushpgupta", 49 | style: TextStyle( 50 | color: Colors.black87, 51 | fontSize: 16, 52 | height: 2, 53 | ), 54 | softWrap: true, 55 | ), 56 | ], 57 | ), 58 | ), 59 | ], 60 | ), 61 | ), 62 | ], 63 | ), 64 | ), 65 | /* Image.asset( 66 | 'assets/images/skills/bike.jpg', 67 | ),*/ 68 | ], 69 | ); 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /lib/pages/drawer.dart: -------------------------------------------------------------------------------- 1 | import 'package:avatar_glow/avatar_glow.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:flutter_portfolio/widgets/drawer_list_tile.dart'; 4 | import 'package:font_awesome_flutter/font_awesome_flutter.dart'; 5 | 6 | class LeftDrawer extends StatelessWidget { 7 | final void Function(int index) onItemTap; 8 | 9 | LeftDrawer(this.onItemTap); 10 | 11 | final list = [ 12 | "INTRO", 13 | "ABOUT", 14 | "EDUCATION", 15 | "WORK", 16 | "SKILLS", 17 | "ARTS/SKETCHES", 18 | "CONTACT" 19 | ]; 20 | 21 | @override 22 | Widget build(BuildContext context) { 23 | return Container( 24 | width: 260, 25 | height: double.infinity, 26 | color: Color(0xFF34495e), 27 | child: SingleChildScrollView( 28 | child: Column( 29 | children: [ 30 | SizedBox( 31 | height: 8, 32 | ), 33 | AvatarGlow( 34 | endRadius: 80.0, 35 | duration: Duration(milliseconds: 2000), 36 | repeat: true, 37 | repeatPauseDuration: Duration(milliseconds: 100), 38 | child: Material( 39 | elevation: 8.0, 40 | shape: CircleBorder(), 41 | color: Colors.transparent, 42 | child: CircleAvatar( 43 | backgroundImage: AssetImage('assets/images/avatar.png'), 44 | radius: 40.0, 45 | ), 46 | ), 47 | ), 48 | Text( 49 | "Ayush P Gupta", 50 | style: TextStyle( 51 | color: Colors.white, 52 | fontSize: 18, 53 | ), 54 | ), 55 | SizedBox( 56 | height: 8, 57 | ), 58 | Row( 59 | mainAxisSize: MainAxisSize.min, 60 | children: [ 61 | Icon( 62 | FontAwesomeIcons.github, 63 | color: Colors.white, 64 | ), 65 | SizedBox( 66 | width: 8, 67 | ), 68 | Text( 69 | "@apgapg", 70 | style: TextStyle( 71 | color: Colors.white, 72 | fontWeight: FontWeight.w300, 73 | fontSize: 14, 74 | ), 75 | ), 76 | ], 77 | ), 78 | SizedBox( 79 | height: 16, 80 | ), 81 | for (int i = 0; i < list.length; i++) 82 | DrawerListTile(list[i], i, onItemTap), 83 | ], 84 | ), 85 | ), 86 | ); 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /lib/pages/education_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_portfolio/widgets/web_layout.dart'; 3 | 4 | class EducationPage extends StatelessWidget { 5 | @override 6 | Widget build(BuildContext context) { 7 | final body = Flexible( 8 | fit: FlexFit.tight, 9 | flex: 2, 10 | child: Stack( 11 | children: [ 12 | Positioned( 13 | bottom: 0, 14 | child: Opacity( 15 | opacity: 0.6, 16 | child: Image.asset( 17 | 'assets/images/intro/footer.png', 18 | fit: BoxFit.fitWidth, 19 | ), 20 | ), 21 | ), 22 | Container( 23 | padding: EdgeInsets.all(32), 24 | child: Column( 25 | crossAxisAlignment: CrossAxisAlignment.start, 26 | mainAxisAlignment: MainAxisAlignment.center, 27 | children: [ 28 | Text( 29 | "AN ENGINEER BY PASSION", 30 | style: TextStyle( 31 | color: Colors.blue, 32 | fontWeight: FontWeight.bold, 33 | fontSize: 18, 34 | ), 35 | ), 36 | SizedBox( 37 | height: 32, 38 | ), 39 | Text( 40 | "B.TECH IN CIVIL ENGG.", 41 | style: TextStyle( 42 | color: Colors.black87, 43 | fontWeight: FontWeight.bold, 44 | fontSize: 28, 45 | ), 46 | ), 47 | SizedBox( 48 | height: 8, 49 | ), 50 | Text( 51 | "IIT ROORKEE", 52 | style: TextStyle( 53 | color: Colors.black87, 54 | fontWeight: FontWeight.bold, 55 | fontSize: 28, 56 | ), 57 | ), 58 | SizedBox( 59 | height: 16, 60 | ), 61 | Text( 62 | "(2014 - 2018)", 63 | style: TextStyle( 64 | color: Colors.black54, 65 | fontSize: 16, 66 | ), 67 | softWrap: true, 68 | ), 69 | ], 70 | ), 71 | ), 72 | ], 73 | ), 74 | ); 75 | final image = Image.asset( 76 | 'assets/images/education/roorkee.jpg', 77 | ); 78 | return WebLayout( 79 | mobileLayout: Row( 80 | children: [ 81 | body, 82 | ], 83 | ), 84 | webLayout: Row( 85 | children: [ 86 | body, 87 | image, 88 | ], 89 | ), 90 | ); 91 | } 92 | } 93 | -------------------------------------------------------------------------------- /lib/pages/home_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_portfolio/pages/about_page.dart'; 3 | import 'package:flutter_portfolio/pages/art_page.dart'; 4 | import 'package:flutter_portfolio/pages/contact_page.dart'; 5 | import 'package:flutter_portfolio/pages/drawer.dart'; 6 | import 'package:flutter_portfolio/pages/education_page.dart'; 7 | import 'package:flutter_portfolio/pages/intro_page.dart'; 8 | import 'package:flutter_portfolio/pages/skills_page.dart'; 9 | import 'package:flutter_portfolio/pages/work_page.dart'; 10 | import 'package:flutter_portfolio/widgets/web_layout.dart'; 11 | 12 | class HomePage extends StatelessWidget { 13 | final _controller = PageController(); 14 | 15 | BuildContext context; 16 | 17 | @override 18 | Widget build(BuildContext context) { 19 | this.context = context; 20 | var drawer = LeftDrawer(onItemTap); 21 | var body = PageView( 22 | physics: MediaQuery.of(context).size.width < 600 23 | ? null 24 | : NeverScrollableScrollPhysics(), 25 | controller: _controller, 26 | scrollDirection: Axis.vertical, 27 | children: [ 28 | IntroPage(), 29 | AboutPage(), 30 | EducationPage(), 31 | WorkPage(), 32 | SkillsPage(), 33 | ArtPage(), 34 | ContactPage(), 35 | ], 36 | ); 37 | return WebLayout( 38 | mobileLayout: Scaffold( 39 | body: body, 40 | drawer: drawer, 41 | appBar: AppBar( 42 | title: Text("My Portfolio"), 43 | elevation: 1, 44 | backgroundColor: Color(0xFF34495e), 45 | ), 46 | ), 47 | webLayout: Scaffold( 48 | body: Container( 49 | color: Colors.white, 50 | child: Row( 51 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 52 | children: [ 53 | drawer, 54 | Flexible( 55 | flex: 1, 56 | fit: FlexFit.tight, 57 | child: body, 58 | ), 59 | ], 60 | ), 61 | ), 62 | ), 63 | ); 64 | } 65 | 66 | void onItemTap(int index) { 67 | _controller.jumpToPage(index); 68 | if (MediaQuery.of(context).size.width < 600) Navigator.pop(context); 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /lib/pages/intro_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_portfolio/widgets/web_layout.dart'; 3 | 4 | class IntroPage extends StatelessWidget { 5 | @override 6 | Widget build(BuildContext context) { 7 | var body = Flexible( 8 | fit: FlexFit.tight, 9 | flex: 2, 10 | child: Stack( 11 | children: [ 12 | Positioned( 13 | bottom: 0, 14 | child: Opacity( 15 | opacity: 0.6, 16 | child: Image.asset( 17 | 'assets/images/intro/footer.png', 18 | fit: BoxFit.fitWidth, 19 | ), 20 | ), 21 | ), 22 | Container( 23 | padding: EdgeInsets.all(32), 24 | child: Column( 25 | crossAxisAlignment: CrossAxisAlignment.start, 26 | mainAxisAlignment: MainAxisAlignment.center, 27 | children: [ 28 | Text( 29 | "HELLO, I AM", 30 | style: TextStyle( 31 | color: Colors.blue, 32 | fontWeight: FontWeight.bold, 33 | fontSize: 18, 34 | ), 35 | ), 36 | SizedBox( 37 | height: 32, 38 | ), 39 | Text( 40 | "AYUSH P GUPTA", 41 | style: TextStyle( 42 | color: Colors.black87, 43 | fontWeight: FontWeight.bold, 44 | fontSize: 28, 45 | ), 46 | ), 47 | SizedBox( 48 | height: 16, 49 | ), 50 | Text( 51 | "IIT Roorkee | Workozy | Mobile + Web Developer | Freelancer | Educator at Unacademy | DIY | DOT | Flute Player", 52 | style: TextStyle( 53 | color: Colors.black54, 54 | fontSize: 16, 55 | ), 56 | softWrap: true, 57 | ), 58 | ], 59 | ), 60 | ), 61 | ], 62 | ), 63 | ); 64 | var image = Image.asset( 65 | 'assets/images/intro/b2.jpg', 66 | ); 67 | return WebLayout( 68 | webLayout: Row( 69 | children: [ 70 | body, 71 | image, 72 | ], 73 | ), 74 | mobileLayout: Row( 75 | children: [ 76 | body, 77 | ], 78 | ), 79 | ); 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /lib/pages/skills_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_portfolio/widgets/web_layout.dart'; 3 | import 'package:url_launcher/url_launcher.dart'; 4 | 5 | class SkillsPage extends StatelessWidget { 6 | @override 7 | Widget build(BuildContext context) { 8 | final body = Flexible( 9 | fit: FlexFit.tight, 10 | flex: 2, 11 | child: Stack( 12 | children: [ 13 | Positioned( 14 | bottom: 0, 15 | child: Opacity( 16 | opacity: 0.6, 17 | child: Image.asset( 18 | 'assets/images/intro/footer.png', 19 | fit: BoxFit.fitWidth, 20 | ), 21 | ), 22 | ), 23 | Container( 24 | padding: EdgeInsets.symmetric(horizontal: 32), 25 | child: SingleChildScrollView( 26 | padding: EdgeInsets.symmetric(vertical: 32), 27 | child: Column( 28 | crossAxisAlignment: CrossAxisAlignment.start, 29 | mainAxisAlignment: MainAxisAlignment.center, 30 | children: [ 31 | Text( 32 | "MY SKILLS", 33 | style: TextStyle( 34 | color: Colors.blue, 35 | fontWeight: FontWeight.bold, 36 | fontSize: 18, 37 | ), 38 | ), 39 | SizedBox( 40 | height: 24, 41 | ), 42 | Container( 43 | margin: EdgeInsets.symmetric(vertical: 8), 44 | child: Column( 45 | crossAxisAlignment: CrossAxisAlignment.start, 46 | children: [ 47 | Text( 48 | "TECH", 49 | style: TextStyle( 50 | color: Colors.black87, 51 | fontWeight: FontWeight.bold, 52 | fontSize: 20, 53 | ), 54 | ), 55 | SizedBox( 56 | height: 12, 57 | ), 58 | Text( 59 | "- Expertise in Mobile App Development (Android/iOS) using Flutter SDK" 60 | "\n- Worked on NodeJs(Express), PHP for API Development" 61 | "\n- Used MongoDb, MySQL databases" 62 | "\n- Worked on Angular, VueJs on with Vuetify on Front End Development", 63 | style: TextStyle( 64 | color: Colors.black54, 65 | fontSize: 16, 66 | ), 67 | softWrap: true, 68 | ), 69 | ], 70 | ), 71 | ), 72 | SizedBox( 73 | height: 16, 74 | ), 75 | Container( 76 | margin: EdgeInsets.symmetric(vertical: 8), 77 | child: Column( 78 | crossAxisAlignment: CrossAxisAlignment.start, 79 | children: [ 80 | Text( 81 | "NON-TECH", 82 | style: TextStyle( 83 | color: Colors.black87, 84 | fontWeight: FontWeight.bold, 85 | fontSize: 20, 86 | ), 87 | ), 88 | SizedBox( 89 | height: 12, 90 | ), 91 | Text( 92 | "- IIT JEE Physics Educator at Unacademy. Published over 22 Courses (377 Lessons) having more than 72k views, 2.5k + Followers" 93 | "\n- Flute and Keyboard Player (Instagram: @flute_by_ayushpgupta)" 94 | "\n- Loves to sketch and draw arts (Instagram: @arts_by_ayushpgupta)" 95 | "\n- Keen passion for bikes and DIY stuffs (Instagram: @diy_by_ayushpgupta)", 96 | style: TextStyle( 97 | color: Colors.black54, 98 | fontSize: 16, 99 | ), 100 | softWrap: true, 101 | ), 102 | ], 103 | ), 104 | ), 105 | SizedBox( 106 | height: 16, 107 | ), 108 | Wrap( 109 | direction: Axis.horizontal, 110 | crossAxisAlignment: WrapCrossAlignment.center, 111 | children: [ 112 | RaisedButton( 113 | child: Text("@arts_by_ayushpgupta"), 114 | onPressed: () async { 115 | await launch( 116 | "https://www.instagram.com/arts_by_ayushpgupta/"); 117 | }, 118 | textColor: Colors.white, 119 | color: Colors.blue, 120 | ), 121 | SizedBox( 122 | width: 8, 123 | ), 124 | RaisedButton( 125 | child: Text("@diy_by_ayushpgupta"), 126 | onPressed: () async { 127 | await launch( 128 | "https://www.instagram.com/diy_by_ayushpgupta/"); 129 | }, 130 | textColor: Colors.white, 131 | color: Colors.blue, 132 | ), 133 | ], 134 | ), 135 | ], 136 | ), 137 | ), 138 | ), 139 | ], 140 | ), 141 | ); 142 | final image = Image.asset( 143 | 'assets/images/skills/bike.jpg', 144 | ); 145 | return WebLayout( 146 | mobileLayout: Row( 147 | children: [ 148 | body, 149 | ], 150 | ), 151 | webLayout: Row( 152 | children: [ 153 | body, 154 | image, 155 | ], 156 | ), 157 | ); 158 | } 159 | } 160 | -------------------------------------------------------------------------------- /lib/pages/work_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_portfolio/widgets/web_layout.dart'; 3 | 4 | class WorkPage extends StatelessWidget { 5 | @override 6 | Widget build(BuildContext context) { 7 | final body = Flexible( 8 | fit: FlexFit.tight, 9 | flex: 2, 10 | child: Stack( 11 | children: [ 12 | Positioned( 13 | bottom: 0, 14 | child: Opacity( 15 | opacity: 0.6, 16 | child: Image.asset( 17 | 'assets/images/intro/footer.png', 18 | fit: BoxFit.fitWidth, 19 | ), 20 | ), 21 | ), 22 | Container( 23 | padding: EdgeInsets.all(32), 24 | child: Column( 25 | crossAxisAlignment: CrossAxisAlignment.center, 26 | mainAxisAlignment: MainAxisAlignment.center, 27 | children: [ 28 | Expanded( 29 | child: Column( 30 | mainAxisSize: MainAxisSize.min, 31 | crossAxisAlignment: CrossAxisAlignment.stretch, 32 | mainAxisAlignment: MainAxisAlignment.center, 33 | children: [ 34 | Text( 35 | "FLUTTER DEVELOPER AT", 36 | style: TextStyle( 37 | color: Colors.blue, 38 | fontWeight: FontWeight.bold, 39 | fontSize: 18, 40 | ), 41 | ), 42 | SizedBox( 43 | height: 32, 44 | ), 45 | Row( 46 | mainAxisSize: MainAxisSize.min, 47 | children: [ 48 | Image.asset( 49 | 'assets/images/work/workozy.png', 50 | height: 40, 51 | ), 52 | SizedBox( 53 | width: 8, 54 | ), 55 | Text( 56 | "workozy", 57 | style: TextStyle( 58 | color: Colors.black87, 59 | fontWeight: FontWeight.bold, 60 | fontSize: 28, 61 | ), 62 | ), 63 | ], 64 | ), 65 | SizedBox( 66 | height: 8, 67 | ), 68 | Text( 69 | "Field Data and Field Work Management", 70 | style: TextStyle( 71 | color: Colors.black54, 72 | fontSize: 14, 73 | ), 74 | softWrap: true, 75 | ), 76 | SizedBox( 77 | height: 24, 78 | ), 79 | Text( 80 | "Responsible for the overall coding, handling and publishing of Android & iOS app build using Flutter SDK.", 81 | style: TextStyle( 82 | color: Colors.black54, 83 | fontSize: 16, 84 | ), 85 | softWrap: true, 86 | ), 87 | ], 88 | ), 89 | ), 90 | Expanded( 91 | child: Image.asset( 92 | 'assets/images/work/workozy_track.png', 93 | ), 94 | ), 95 | ], 96 | ), 97 | ), 98 | ], 99 | ), 100 | ); 101 | final image = Image.asset( 102 | 'assets/images/work/office.jpg', 103 | ); 104 | return WebLayout( 105 | mobileLayout: Row( 106 | children: [ 107 | body, 108 | ], 109 | ), 110 | webLayout: Row( 111 | children: [ 112 | body, 113 | image, 114 | ], 115 | ), 116 | ); 117 | } 118 | } 119 | -------------------------------------------------------------------------------- /lib/widgets/animated_heritage.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class AnimatedHeritage extends StatefulWidget { 4 | @override 5 | _AnimatedHeritageState createState() => _AnimatedHeritageState(); 6 | } 7 | 8 | class _AnimatedHeritageState extends State 9 | with SingleTickerProviderStateMixin { 10 | Animation animation; 11 | AnimationController controller; 12 | 13 | bool show = false; 14 | 15 | @override 16 | void initState() { 17 | super.initState(); 18 | controller = 19 | AnimationController(duration: Duration(milliseconds: 500), vsync: this); 20 | final Animation curve = 21 | CurvedAnimation(parent: controller, curve: Curves.easeInOut); 22 | animation = Tween(begin: 3.14 * 0.20, end: -3.14 * 0.20).animate(curve); 23 | controller.addStatusListener((_) async { 24 | if (controller.status == AnimationStatus.completed) { 25 | setState(() { 26 | show = !show; 27 | }); 28 | if (controller != null) { 29 | controller.reset(); 30 | controller.forward(); 31 | } 32 | } 33 | }); 34 | controller.forward(); 35 | } 36 | 37 | @override 38 | void dispose() { 39 | controller.dispose(); 40 | super.dispose(); 41 | } 42 | 43 | @override 44 | Widget build(BuildContext context) { 45 | return Stack( 46 | alignment: Alignment.bottomCenter, 47 | children: [ 48 | Container( 49 | height: 40.0, 50 | width: 100.0, 51 | color: show ? Colors.red : Colors.yellow, 52 | margin: EdgeInsets.only(bottom: 4.0), 53 | ), 54 | Image.asset( 55 | 'assets/images/lucknow_heritage.png', 56 | height: 120.0, 57 | ), 58 | ], 59 | ); 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /lib/widgets/drawer_list_tile.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class DrawerListTile extends StatelessWidget { 4 | final String title; 5 | final int index; 6 | final void Function(int index) onItemTap; 7 | 8 | DrawerListTile(this.title, this.index, this.onItemTap); 9 | 10 | @override 11 | Widget build(BuildContext context) { 12 | return Container( 13 | child: Material( 14 | color: Colors.transparent, 15 | child: InkWell( 16 | onTap: () { 17 | onItemTap(index); 18 | }, 19 | child: ListTile( 20 | contentPadding: EdgeInsets.symmetric( 21 | vertical: 0, 22 | horizontal: 24, 23 | ), 24 | title: Text( 25 | title, 26 | style: TextStyle(color: Colors.white), 27 | ), 28 | ), 29 | ), 30 | ), 31 | ); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /lib/widgets/page_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/lib/widgets/page_layout.dart -------------------------------------------------------------------------------- /lib/widgets/plane.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Plane extends StatefulWidget { 4 | @override 5 | _PlaneState createState() => _PlaneState(); 6 | } 7 | 8 | class _PlaneState extends State with SingleTickerProviderStateMixin { 9 | Animation animation; 10 | AnimationController controller; 11 | 12 | bool show = false; 13 | 14 | @override 15 | void didChangeDependencies() { 16 | super.didChangeDependencies(); 17 | 18 | controller = AnimationController( 19 | duration: Duration(milliseconds: 6000), vsync: this); 20 | final Animation curve = 21 | CurvedAnimation(parent: controller, curve: Curves.linear); 22 | animation = 23 | Tween(begin: 0.0, end: -(MediaQuery.of(context).size.width + 500.0)) 24 | .animate(curve); 25 | 26 | controller.addListener(() { 27 | setState(() {}); 28 | }); 29 | controller.addStatusListener((status) async { 30 | if (status == AnimationStatus.completed) { 31 | await Future.delayed(Duration(milliseconds: 100)); 32 | if (controller != null) { 33 | controller.reset(); 34 | controller.forward(); 35 | } 36 | } else if (status == AnimationStatus.dismissed) { 37 | if (controller != null) controller.forward(); 38 | } 39 | }); 40 | controller.forward(); 41 | } 42 | 43 | @override 44 | void dispose() { 45 | controller.dispose(); 46 | super.dispose(); 47 | } 48 | 49 | @override 50 | Widget build(BuildContext context) { 51 | return Stack( 52 | alignment: Alignment.center, 53 | children: [ 54 | Transform.translate( 55 | offset: Offset( 56 | MediaQuery.of(context).size.width + animation.value , 57 | -28.0), 58 | child: Image.asset( 59 | 'assets/images/plane_text.png', 60 | height: 100, 61 | ), 62 | ), 63 | ], 64 | ); 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /lib/widgets/web_layout.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class WebLayout extends StatelessWidget { 4 | final Widget mobileLayout; 5 | final Widget webLayout; 6 | 7 | WebLayout({this.mobileLayout, this.webLayout}); 8 | 9 | @override 10 | Widget build(BuildContext context) { 11 | return LayoutBuilder( 12 | builder: (context, constraints) { 13 | if (constraints.maxWidth >= 600) { 14 | return webLayout; 15 | } else { 16 | return mobileLayout; 17 | } 18 | }, 19 | ); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/xcuserdata/ 7 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "ephemeral/Flutter-Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | import FlutterMacOS 6 | import Foundation 7 | 8 | import path_provider_fde 9 | import url_launcher_fde 10 | 11 | func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { 12 | PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) 13 | UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) 14 | } 15 | -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- 1 | platform :osx, '10.11' 2 | 3 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. 4 | ENV['COCOAPODS_DISABLE_STATS'] = 'true' 5 | 6 | project 'Runner', { 7 | 'Debug' => :debug, 8 | 'Profile' => :release, 9 | 'Release' => :release, 10 | } 11 | 12 | def parse_KV_file(file, separator='=') 13 | file_abs_path = File.expand_path(file) 14 | if !File.exists? file_abs_path 15 | return []; 16 | end 17 | pods_ary = [] 18 | skip_line_start_symbols = ["#", "/"] 19 | File.foreach(file_abs_path) { |line| 20 | next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ } 21 | plugin = line.split(pattern=separator) 22 | if plugin.length == 2 23 | podname = plugin[0].strip() 24 | path = plugin[1].strip() 25 | podpath = File.expand_path("#{path}", file_abs_path) 26 | pods_ary.push({:name => podname, :path => podpath}); 27 | else 28 | puts "Invalid plugin specification: #{line}" 29 | end 30 | } 31 | return pods_ary 32 | end 33 | 34 | def pubspec_supports_macos(file) 35 | file_abs_path = File.expand_path(file) 36 | if !File.exists? file_abs_path 37 | return false; 38 | end 39 | File.foreach(file_abs_path) { |line| 40 | return true if line =~ /^\s*macos:/ 41 | } 42 | return false 43 | end 44 | 45 | target 'Runner' do 46 | use_frameworks! 47 | 48 | # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock 49 | # referring to absolute paths on developers' machines. 50 | ephemeral_dir = File.join('Flutter', 'ephemeral') 51 | symlink_dir = File.join(ephemeral_dir, '.symlinks') 52 | symlink_plugins_dir = File.join(symlink_dir, 'plugins') 53 | system("rm -rf #{symlink_dir}") 54 | system("mkdir -p #{symlink_plugins_dir}") 55 | 56 | # Flutter Pods 57 | generated_xcconfig = parse_KV_file(File.join(ephemeral_dir, 'Flutter-Generated.xcconfig')) 58 | if generated_xcconfig.empty? 59 | puts "Flutter-Generated.xcconfig must exist. If you're running pod install manually, make sure flutter packages get is executed first." 60 | end 61 | generated_xcconfig.map { |p| 62 | if p[:name] == 'FLUTTER_FRAMEWORK_DIR' 63 | symlink = File.join(symlink_dir, 'flutter') 64 | File.symlink(File.dirname(p[:path]), symlink) 65 | pod 'FlutterMacOS', :path => File.join(symlink, File.basename(p[:path])) 66 | end 67 | } 68 | 69 | # Plugin Pods 70 | plugin_pods = parse_KV_file('../.flutter-plugins') 71 | plugin_pods.map { |p| 72 | symlink = File.join(symlink_plugins_dir, p[:name]) 73 | File.symlink(p[:path], symlink) 74 | if pubspec_supports_macos(File.join(symlink, 'pubspec.yaml')) 75 | pod p[:name], :path => File.join(symlink, 'macos') 76 | end 77 | } 78 | end 79 | 80 | # Prevent Cocoapods from embedding a second Flutter framework and causing an error with the new Xcode build system. 81 | install! 'cocoapods', :disable_input_output_paths => true 82 | -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - FlutterMacOS (1.0.0) 3 | - path_provider_fde (0.0.1): 4 | - FlutterMacOS 5 | - url_launcher_fde (0.0.1): 6 | - FlutterMacOS 7 | 8 | DEPENDENCIES: 9 | - FlutterMacOS (from `Flutter/ephemeral/.symlinks/flutter/darwin-x64`) 10 | - path_provider_fde (from `Flutter/ephemeral/.symlinks/plugins/path_provider_fde/macos`) 11 | - url_launcher_fde (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_fde/macos`) 12 | 13 | EXTERNAL SOURCES: 14 | FlutterMacOS: 15 | :path: Flutter/ephemeral/.symlinks/flutter/darwin-x64 16 | path_provider_fde: 17 | :path: Flutter/ephemeral/.symlinks/plugins/path_provider_fde/macos 18 | url_launcher_fde: 19 | :path: Flutter/ephemeral/.symlinks/plugins/url_launcher_fde/macos 20 | 21 | SPEC CHECKSUMS: 22 | FlutterMacOS: 15bea8a44d2fa024068daa0140371c020b4b6ff9 23 | path_provider_fde: ac05eee380688ce8414a9003c3ac2d3c106dcbf8 24 | url_launcher_fde: 2e3afc0d9c7c0dfe63e0ef42030ec62d56096b38 25 | 26 | PODFILE CHECKSUM: f1f125ca80df00541fd3717ba2927f4dff97d9b3 27 | 28 | COCOAPODS: 1.6.1 29 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 51; 7 | objects = { 8 | 9 | /* Begin PBXAggregateTarget section */ 10 | 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { 11 | isa = PBXAggregateTarget; 12 | buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; 13 | buildPhases = ( 14 | 33CC111E2044C6BF0003C045 /* ShellScript */, 15 | ); 16 | dependencies = ( 17 | ); 18 | name = "Flutter Assemble"; 19 | productName = FLX; 20 | }; 21 | /* End PBXAggregateTarget section */ 22 | 23 | /* Begin PBXBuildFile section */ 24 | 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; 25 | 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; 26 | 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; 27 | 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; 28 | 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; 29 | 33D1A10422148B71006C7A3E /* FlutterMacOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D1A10322148B71006C7A3E /* FlutterMacOS.framework */; }; 30 | 33D1A10522148B93006C7A3E /* FlutterMacOS.framework in Bundle Framework */ = {isa = PBXBuildFile; fileRef = 33D1A10322148B71006C7A3E /* FlutterMacOS.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 31 | 8145395BEBA3069D5FDB648D /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71424D21DDFEF6C236AC55D1 /* Pods_Runner.framework */; }; 32 | D73912F022F37F9E000D13A0 /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D73912EF22F37F9E000D13A0 /* App.framework */; }; 33 | D73912F222F3801D000D13A0 /* App.framework in Bundle Framework */ = {isa = PBXBuildFile; fileRef = D73912EF22F37F9E000D13A0 /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 34 | /* End PBXBuildFile section */ 35 | 36 | /* Begin PBXContainerItemProxy section */ 37 | 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { 38 | isa = PBXContainerItemProxy; 39 | containerPortal = 33CC10E52044A3C60003C045 /* Project object */; 40 | proxyType = 1; 41 | remoteGlobalIDString = 33CC111A2044C6BA0003C045; 42 | remoteInfo = FLX; 43 | }; 44 | /* End PBXContainerItemProxy section */ 45 | 46 | /* Begin PBXCopyFilesBuildPhase section */ 47 | 33CC110E2044A8840003C045 /* Bundle Framework */ = { 48 | isa = PBXCopyFilesBuildPhase; 49 | buildActionMask = 2147483647; 50 | dstPath = ""; 51 | dstSubfolderSpec = 10; 52 | files = ( 53 | D73912F222F3801D000D13A0 /* App.framework in Bundle Framework */, 54 | 33D1A10522148B93006C7A3E /* FlutterMacOS.framework in Bundle Framework */, 55 | ); 56 | name = "Bundle Framework"; 57 | runOnlyForDeploymentPostprocessing = 0; 58 | }; 59 | /* End PBXCopyFilesBuildPhase section */ 60 | 61 | /* Begin PBXFileReference section */ 62 | 0CC55A80D8CC4649E4986FAF /* 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 = ""; }; 63 | 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; 64 | 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; 65 | 33CC10ED2044A3C60003C045 /* flutter_portfolio.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = flutter_portfolio.app; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 67 | 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; 68 | 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; 69 | 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; 70 | 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; 71 | 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; 72 | 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; 73 | 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; 74 | 33D1A10322148B71006C7A3E /* FlutterMacOS.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FlutterMacOS.framework; path = Flutter/ephemeral/FlutterMacOS.framework; sourceTree = SOURCE_ROOT; }; 75 | 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; 76 | 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; 77 | 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; 78 | 5E48EC59570F9B5E3144289D /* 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 = ""; }; 79 | 71424D21DDFEF6C236AC55D1 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 80 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; 81 | 82FAA21DEE79D1ACC8680A05 /* 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 = ""; }; 82 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; 83 | D73912EF22F37F9E000D13A0 /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/ephemeral/App.framework; sourceTree = SOURCE_ROOT; }; 84 | /* End PBXFileReference section */ 85 | 86 | /* Begin PBXFrameworksBuildPhase section */ 87 | 33CC10EA2044A3C60003C045 /* Frameworks */ = { 88 | isa = PBXFrameworksBuildPhase; 89 | buildActionMask = 2147483647; 90 | files = ( 91 | D73912F022F37F9E000D13A0 /* App.framework in Frameworks */, 92 | 33D1A10422148B71006C7A3E /* FlutterMacOS.framework in Frameworks */, 93 | 8145395BEBA3069D5FDB648D /* Pods_Runner.framework in Frameworks */, 94 | ); 95 | runOnlyForDeploymentPostprocessing = 0; 96 | }; 97 | /* End PBXFrameworksBuildPhase section */ 98 | 99 | /* Begin PBXGroup section */ 100 | 33BA886A226E78AF003329D5 /* Configs */ = { 101 | isa = PBXGroup; 102 | children = ( 103 | 33E5194F232828860026EE4D /* AppInfo.xcconfig */, 104 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 105 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 106 | 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, 107 | ); 108 | path = Configs; 109 | sourceTree = ""; 110 | }; 111 | 33CC10E42044A3C60003C045 = { 112 | isa = PBXGroup; 113 | children = ( 114 | 33FAB671232836740065AC1E /* Runner */, 115 | 33CEB47122A05771004F2AC0 /* Flutter */, 116 | 33CC10EE2044A3C60003C045 /* Products */, 117 | D73912EC22F37F3D000D13A0 /* Frameworks */, 118 | 9388939A4DD0FA25362D4C11 /* Pods */, 119 | ); 120 | sourceTree = ""; 121 | }; 122 | 33CC10EE2044A3C60003C045 /* Products */ = { 123 | isa = PBXGroup; 124 | children = ( 125 | 33CC10ED2044A3C60003C045 /* flutter_portfolio.app */, 126 | ); 127 | name = Products; 128 | sourceTree = ""; 129 | }; 130 | 33CC11242044D66E0003C045 /* Resources */ = { 131 | isa = PBXGroup; 132 | children = ( 133 | 33CC10F22044A3C60003C045 /* Assets.xcassets */, 134 | 33CC10F42044A3C60003C045 /* MainMenu.xib */, 135 | 33CC10F72044A3C60003C045 /* Info.plist */, 136 | ); 137 | name = Resources; 138 | path = ..; 139 | sourceTree = ""; 140 | }; 141 | 33CEB47122A05771004F2AC0 /* Flutter */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, 145 | 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, 146 | 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, 147 | 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, 148 | D73912EF22F37F9E000D13A0 /* App.framework */, 149 | 33D1A10322148B71006C7A3E /* FlutterMacOS.framework */, 150 | ); 151 | path = Flutter; 152 | sourceTree = ""; 153 | }; 154 | 33FAB671232836740065AC1E /* Runner */ = { 155 | isa = PBXGroup; 156 | children = ( 157 | 33CC10F02044A3C60003C045 /* AppDelegate.swift */, 158 | 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, 159 | 33E51913231747F40026EE4D /* DebugProfile.entitlements */, 160 | 33E51914231749380026EE4D /* Release.entitlements */, 161 | 33CC11242044D66E0003C045 /* Resources */, 162 | 33BA886A226E78AF003329D5 /* Configs */, 163 | ); 164 | path = Runner; 165 | sourceTree = ""; 166 | }; 167 | 9388939A4DD0FA25362D4C11 /* Pods */ = { 168 | isa = PBXGroup; 169 | children = ( 170 | 0CC55A80D8CC4649E4986FAF /* Pods-Runner.debug.xcconfig */, 171 | 82FAA21DEE79D1ACC8680A05 /* Pods-Runner.release.xcconfig */, 172 | 5E48EC59570F9B5E3144289D /* Pods-Runner.profile.xcconfig */, 173 | ); 174 | name = Pods; 175 | path = Pods; 176 | sourceTree = ""; 177 | }; 178 | D73912EC22F37F3D000D13A0 /* Frameworks */ = { 179 | isa = PBXGroup; 180 | children = ( 181 | 71424D21DDFEF6C236AC55D1 /* Pods_Runner.framework */, 182 | ); 183 | name = Frameworks; 184 | sourceTree = ""; 185 | }; 186 | /* End PBXGroup section */ 187 | 188 | /* Begin PBXNativeTarget section */ 189 | 33CC10EC2044A3C60003C045 /* Runner */ = { 190 | isa = PBXNativeTarget; 191 | buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; 192 | buildPhases = ( 193 | 293D76EFD8188814944E0AD9 /* [CP] Check Pods Manifest.lock */, 194 | 33CC10E92044A3C60003C045 /* Sources */, 195 | 33CC10EA2044A3C60003C045 /* Frameworks */, 196 | 33CC10EB2044A3C60003C045 /* Resources */, 197 | 33CC110E2044A8840003C045 /* Bundle Framework */, 198 | 3399D490228B24CF009A79C7 /* ShellScript */, 199 | AF08469F1A61CCC65590CBB7 /* [CP] Embed Pods Frameworks */, 200 | ); 201 | buildRules = ( 202 | ); 203 | dependencies = ( 204 | 33CC11202044C79F0003C045 /* PBXTargetDependency */, 205 | ); 206 | name = Runner; 207 | productName = Runner; 208 | productReference = 33CC10ED2044A3C60003C045 /* flutter_portfolio.app */; 209 | productType = "com.apple.product-type.application"; 210 | }; 211 | /* End PBXNativeTarget section */ 212 | 213 | /* Begin PBXProject section */ 214 | 33CC10E52044A3C60003C045 /* Project object */ = { 215 | isa = PBXProject; 216 | attributes = { 217 | LastSwiftUpdateCheck = 0920; 218 | LastUpgradeCheck = 0930; 219 | ORGANIZATIONNAME = "Google LLC"; 220 | TargetAttributes = { 221 | 33CC10EC2044A3C60003C045 = { 222 | CreatedOnToolsVersion = 9.2; 223 | LastSwiftMigration = 0920; 224 | ProvisioningStyle = Automatic; 225 | SystemCapabilities = { 226 | com.apple.Sandbox = { 227 | enabled = 1; 228 | }; 229 | }; 230 | }; 231 | 33CC111A2044C6BA0003C045 = { 232 | CreatedOnToolsVersion = 9.2; 233 | ProvisioningStyle = Manual; 234 | }; 235 | }; 236 | }; 237 | buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; 238 | compatibilityVersion = "Xcode 8.0"; 239 | developmentRegion = en; 240 | hasScannedForEncodings = 0; 241 | knownRegions = ( 242 | en, 243 | Base, 244 | ); 245 | mainGroup = 33CC10E42044A3C60003C045; 246 | productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; 247 | projectDirPath = ""; 248 | projectRoot = ""; 249 | targets = ( 250 | 33CC10EC2044A3C60003C045 /* Runner */, 251 | 33CC111A2044C6BA0003C045 /* Flutter Assemble */, 252 | ); 253 | }; 254 | /* End PBXProject section */ 255 | 256 | /* Begin PBXResourcesBuildPhase section */ 257 | 33CC10EB2044A3C60003C045 /* Resources */ = { 258 | isa = PBXResourcesBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, 262 | 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, 263 | ); 264 | runOnlyForDeploymentPostprocessing = 0; 265 | }; 266 | /* End PBXResourcesBuildPhase section */ 267 | 268 | /* Begin PBXShellScriptBuildPhase section */ 269 | 293D76EFD8188814944E0AD9 /* [CP] Check Pods Manifest.lock */ = { 270 | isa = PBXShellScriptBuildPhase; 271 | buildActionMask = 2147483647; 272 | files = ( 273 | ); 274 | inputFileListPaths = ( 275 | ); 276 | inputPaths = ( 277 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 278 | "${PODS_ROOT}/Manifest.lock", 279 | ); 280 | name = "[CP] Check Pods Manifest.lock"; 281 | outputFileListPaths = ( 282 | ); 283 | outputPaths = ( 284 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", 285 | ); 286 | runOnlyForDeploymentPostprocessing = 0; 287 | shellPath = /bin/sh; 288 | 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"; 289 | showEnvVarsInLog = 0; 290 | }; 291 | 3399D490228B24CF009A79C7 /* ShellScript */ = { 292 | isa = PBXShellScriptBuildPhase; 293 | buildActionMask = 2147483647; 294 | files = ( 295 | ); 296 | inputFileListPaths = ( 297 | ); 298 | inputPaths = ( 299 | ); 300 | outputFileListPaths = ( 301 | ); 302 | outputPaths = ( 303 | ); 304 | runOnlyForDeploymentPostprocessing = 0; 305 | shellPath = /bin/sh; 306 | shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename\n"; 307 | }; 308 | 33CC111E2044C6BF0003C045 /* ShellScript */ = { 309 | isa = PBXShellScriptBuildPhase; 310 | buildActionMask = 2147483647; 311 | files = ( 312 | ); 313 | inputFileListPaths = ( 314 | Flutter/ephemeral/FlutterInputs.xcfilelist, 315 | ); 316 | inputPaths = ( 317 | Flutter/ephemeral/tripwire, 318 | ); 319 | outputFileListPaths = ( 320 | Flutter/ephemeral/FlutterOutputs.xcfilelist, 321 | ); 322 | outputPaths = ( 323 | ); 324 | runOnlyForDeploymentPostprocessing = 0; 325 | shellPath = /bin/sh; 326 | shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh\ntouch Flutter/ephemeral/tripwire\n"; 327 | }; 328 | AF08469F1A61CCC65590CBB7 /* [CP] Embed Pods Frameworks */ = { 329 | isa = PBXShellScriptBuildPhase; 330 | buildActionMask = 2147483647; 331 | files = ( 332 | ); 333 | inputFileListPaths = ( 334 | ); 335 | inputPaths = ( 336 | ); 337 | name = "[CP] Embed Pods Frameworks"; 338 | outputFileListPaths = ( 339 | ); 340 | outputPaths = ( 341 | ); 342 | runOnlyForDeploymentPostprocessing = 0; 343 | shellPath = /bin/sh; 344 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; 345 | showEnvVarsInLog = 0; 346 | }; 347 | /* End PBXShellScriptBuildPhase section */ 348 | 349 | /* Begin PBXSourcesBuildPhase section */ 350 | 33CC10E92044A3C60003C045 /* Sources */ = { 351 | isa = PBXSourcesBuildPhase; 352 | buildActionMask = 2147483647; 353 | files = ( 354 | 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, 355 | 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, 356 | 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, 357 | ); 358 | runOnlyForDeploymentPostprocessing = 0; 359 | }; 360 | /* End PBXSourcesBuildPhase section */ 361 | 362 | /* Begin PBXTargetDependency section */ 363 | 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { 364 | isa = PBXTargetDependency; 365 | target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; 366 | targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; 367 | }; 368 | /* End PBXTargetDependency section */ 369 | 370 | /* Begin PBXVariantGroup section */ 371 | 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { 372 | isa = PBXVariantGroup; 373 | children = ( 374 | 33CC10F52044A3C60003C045 /* Base */, 375 | ); 376 | name = MainMenu.xib; 377 | path = Runner; 378 | sourceTree = ""; 379 | }; 380 | /* End PBXVariantGroup section */ 381 | 382 | /* Begin XCBuildConfiguration section */ 383 | 338D0CE9231458BD00FA5F75 /* Profile */ = { 384 | isa = XCBuildConfiguration; 385 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 386 | buildSettings = { 387 | ALWAYS_SEARCH_USER_PATHS = NO; 388 | CLANG_ANALYZER_NONNULL = YES; 389 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 390 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 391 | CLANG_CXX_LIBRARY = "libc++"; 392 | CLANG_ENABLE_MODULES = YES; 393 | CLANG_ENABLE_OBJC_ARC = YES; 394 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 395 | CLANG_WARN_BOOL_CONVERSION = YES; 396 | CLANG_WARN_CONSTANT_CONVERSION = YES; 397 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 398 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 399 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 400 | CLANG_WARN_EMPTY_BODY = YES; 401 | CLANG_WARN_ENUM_CONVERSION = YES; 402 | CLANG_WARN_INFINITE_RECURSION = YES; 403 | CLANG_WARN_INT_CONVERSION = YES; 404 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 405 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 406 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 407 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 408 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 409 | CODE_SIGN_IDENTITY = "-"; 410 | COPY_PHASE_STRIP = NO; 411 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 412 | ENABLE_NS_ASSERTIONS = NO; 413 | ENABLE_STRICT_OBJC_MSGSEND = YES; 414 | GCC_C_LANGUAGE_STANDARD = gnu11; 415 | GCC_NO_COMMON_BLOCKS = YES; 416 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 417 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 418 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 419 | GCC_WARN_UNUSED_FUNCTION = YES; 420 | GCC_WARN_UNUSED_VARIABLE = YES; 421 | MACOSX_DEPLOYMENT_TARGET = 10.11; 422 | MTL_ENABLE_DEBUG_INFO = NO; 423 | SDKROOT = macosx; 424 | SWIFT_COMPILATION_MODE = wholemodule; 425 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 426 | }; 427 | name = Profile; 428 | }; 429 | 338D0CEA231458BD00FA5F75 /* Profile */ = { 430 | isa = XCBuildConfiguration; 431 | baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; 432 | buildSettings = { 433 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 434 | CLANG_ENABLE_MODULES = YES; 435 | CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; 436 | CODE_SIGN_STYLE = Automatic; 437 | COMBINE_HIDPI_IMAGES = YES; 438 | FRAMEWORK_SEARCH_PATHS = ( 439 | "$(inherited)", 440 | "$(PROJECT_DIR)/Flutter/ephemeral", 441 | ); 442 | INFOPLIST_FILE = Runner/Info.plist; 443 | LD_RUNPATH_SEARCH_PATHS = ( 444 | "$(inherited)", 445 | "@executable_path/../Frameworks", 446 | ); 447 | PROVISIONING_PROFILE_SPECIFIER = ""; 448 | SWIFT_VERSION = 4.0; 449 | }; 450 | name = Profile; 451 | }; 452 | 338D0CEB231458BD00FA5F75 /* Profile */ = { 453 | isa = XCBuildConfiguration; 454 | buildSettings = { 455 | CODE_SIGN_STYLE = Manual; 456 | PRODUCT_NAME = "$(TARGET_NAME)"; 457 | }; 458 | name = Profile; 459 | }; 460 | 33CC10F92044A3C60003C045 /* Debug */ = { 461 | isa = XCBuildConfiguration; 462 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 463 | buildSettings = { 464 | ALWAYS_SEARCH_USER_PATHS = NO; 465 | CLANG_ANALYZER_NONNULL = YES; 466 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 467 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 468 | CLANG_CXX_LIBRARY = "libc++"; 469 | CLANG_ENABLE_MODULES = YES; 470 | CLANG_ENABLE_OBJC_ARC = YES; 471 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 472 | CLANG_WARN_BOOL_CONVERSION = YES; 473 | CLANG_WARN_CONSTANT_CONVERSION = YES; 474 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 475 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 476 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 477 | CLANG_WARN_EMPTY_BODY = YES; 478 | CLANG_WARN_ENUM_CONVERSION = YES; 479 | CLANG_WARN_INFINITE_RECURSION = YES; 480 | CLANG_WARN_INT_CONVERSION = YES; 481 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 482 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 483 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 484 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 485 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 486 | CODE_SIGN_IDENTITY = "-"; 487 | COPY_PHASE_STRIP = NO; 488 | DEBUG_INFORMATION_FORMAT = dwarf; 489 | ENABLE_STRICT_OBJC_MSGSEND = YES; 490 | ENABLE_TESTABILITY = YES; 491 | GCC_C_LANGUAGE_STANDARD = gnu11; 492 | GCC_DYNAMIC_NO_PIC = NO; 493 | GCC_NO_COMMON_BLOCKS = YES; 494 | GCC_OPTIMIZATION_LEVEL = 0; 495 | GCC_PREPROCESSOR_DEFINITIONS = ( 496 | "DEBUG=1", 497 | "$(inherited)", 498 | ); 499 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 500 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 501 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 502 | GCC_WARN_UNUSED_FUNCTION = YES; 503 | GCC_WARN_UNUSED_VARIABLE = YES; 504 | MACOSX_DEPLOYMENT_TARGET = 10.11; 505 | MTL_ENABLE_DEBUG_INFO = YES; 506 | ONLY_ACTIVE_ARCH = YES; 507 | SDKROOT = macosx; 508 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 509 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 510 | }; 511 | name = Debug; 512 | }; 513 | 33CC10FA2044A3C60003C045 /* Release */ = { 514 | isa = XCBuildConfiguration; 515 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 516 | buildSettings = { 517 | ALWAYS_SEARCH_USER_PATHS = NO; 518 | CLANG_ANALYZER_NONNULL = YES; 519 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 520 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 521 | CLANG_CXX_LIBRARY = "libc++"; 522 | CLANG_ENABLE_MODULES = YES; 523 | CLANG_ENABLE_OBJC_ARC = YES; 524 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 525 | CLANG_WARN_BOOL_CONVERSION = YES; 526 | CLANG_WARN_CONSTANT_CONVERSION = YES; 527 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 528 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 529 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 530 | CLANG_WARN_EMPTY_BODY = YES; 531 | CLANG_WARN_ENUM_CONVERSION = YES; 532 | CLANG_WARN_INFINITE_RECURSION = YES; 533 | CLANG_WARN_INT_CONVERSION = YES; 534 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 535 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 536 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 537 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 538 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 539 | CODE_SIGN_IDENTITY = "-"; 540 | COPY_PHASE_STRIP = NO; 541 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 542 | ENABLE_NS_ASSERTIONS = NO; 543 | ENABLE_STRICT_OBJC_MSGSEND = YES; 544 | GCC_C_LANGUAGE_STANDARD = gnu11; 545 | GCC_NO_COMMON_BLOCKS = YES; 546 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 547 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 548 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 549 | GCC_WARN_UNUSED_FUNCTION = YES; 550 | GCC_WARN_UNUSED_VARIABLE = YES; 551 | MACOSX_DEPLOYMENT_TARGET = 10.11; 552 | MTL_ENABLE_DEBUG_INFO = NO; 553 | SDKROOT = macosx; 554 | SWIFT_COMPILATION_MODE = wholemodule; 555 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 556 | }; 557 | name = Release; 558 | }; 559 | 33CC10FC2044A3C60003C045 /* Debug */ = { 560 | isa = XCBuildConfiguration; 561 | baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; 562 | buildSettings = { 563 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 564 | CLANG_ENABLE_MODULES = YES; 565 | CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; 566 | CODE_SIGN_STYLE = Automatic; 567 | COMBINE_HIDPI_IMAGES = YES; 568 | FRAMEWORK_SEARCH_PATHS = ( 569 | "$(inherited)", 570 | "$(PROJECT_DIR)/Flutter/ephemeral", 571 | ); 572 | INFOPLIST_FILE = Runner/Info.plist; 573 | LD_RUNPATH_SEARCH_PATHS = ( 574 | "$(inherited)", 575 | "@executable_path/../Frameworks", 576 | ); 577 | PROVISIONING_PROFILE_SPECIFIER = ""; 578 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 579 | SWIFT_VERSION = 4.0; 580 | }; 581 | name = Debug; 582 | }; 583 | 33CC10FD2044A3C60003C045 /* Release */ = { 584 | isa = XCBuildConfiguration; 585 | baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; 586 | buildSettings = { 587 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 588 | CLANG_ENABLE_MODULES = YES; 589 | CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; 590 | CODE_SIGN_STYLE = Automatic; 591 | COMBINE_HIDPI_IMAGES = YES; 592 | FRAMEWORK_SEARCH_PATHS = ( 593 | "$(inherited)", 594 | "$(PROJECT_DIR)/Flutter/ephemeral", 595 | ); 596 | INFOPLIST_FILE = Runner/Info.plist; 597 | LD_RUNPATH_SEARCH_PATHS = ( 598 | "$(inherited)", 599 | "@executable_path/../Frameworks", 600 | ); 601 | PROVISIONING_PROFILE_SPECIFIER = ""; 602 | SWIFT_VERSION = 4.0; 603 | }; 604 | name = Release; 605 | }; 606 | 33CC111C2044C6BA0003C045 /* Debug */ = { 607 | isa = XCBuildConfiguration; 608 | buildSettings = { 609 | CODE_SIGN_STYLE = Manual; 610 | PRODUCT_NAME = "$(TARGET_NAME)"; 611 | }; 612 | name = Debug; 613 | }; 614 | 33CC111D2044C6BA0003C045 /* Release */ = { 615 | isa = XCBuildConfiguration; 616 | buildSettings = { 617 | CODE_SIGN_STYLE = Automatic; 618 | PRODUCT_NAME = "$(TARGET_NAME)"; 619 | }; 620 | name = Release; 621 | }; 622 | /* End XCBuildConfiguration section */ 623 | 624 | /* Begin XCConfigurationList section */ 625 | 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { 626 | isa = XCConfigurationList; 627 | buildConfigurations = ( 628 | 33CC10F92044A3C60003C045 /* Debug */, 629 | 33CC10FA2044A3C60003C045 /* Release */, 630 | 338D0CE9231458BD00FA5F75 /* Profile */, 631 | ); 632 | defaultConfigurationIsVisible = 0; 633 | defaultConfigurationName = Release; 634 | }; 635 | 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { 636 | isa = XCConfigurationList; 637 | buildConfigurations = ( 638 | 33CC10FC2044A3C60003C045 /* Debug */, 639 | 33CC10FD2044A3C60003C045 /* Release */, 640 | 338D0CEA231458BD00FA5F75 /* Profile */, 641 | ); 642 | defaultConfigurationIsVisible = 0; 643 | defaultConfigurationName = Release; 644 | }; 645 | 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { 646 | isa = XCConfigurationList; 647 | buildConfigurations = ( 648 | 33CC111C2044C6BA0003C045 /* Debug */, 649 | 33CC111D2044C6BA0003C045 /* Release */, 650 | 338D0CEB231458BD00FA5F75 /* Profile */, 651 | ); 652 | defaultConfigurationIsVisible = 0; 653 | defaultConfigurationName = Release; 654 | }; 655 | /* End XCConfigurationList section */ 656 | }; 657 | rootObject = 33CC10E52044A3C60003C045 /* Project object */; 658 | } 659 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @NSApplicationMain 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "16x16", 5 | "idiom" : "mac", 6 | "filename" : "app_icon_16.png", 7 | "scale" : "1x" 8 | }, 9 | { 10 | "size" : "16x16", 11 | "idiom" : "mac", 12 | "filename" : "app_icon_32.png", 13 | "scale" : "2x" 14 | }, 15 | { 16 | "size" : "32x32", 17 | "idiom" : "mac", 18 | "filename" : "app_icon_32.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "32x32", 23 | "idiom" : "mac", 24 | "filename" : "app_icon_64.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "128x128", 29 | "idiom" : "mac", 30 | "filename" : "app_icon_128.png", 31 | "scale" : "1x" 32 | }, 33 | { 34 | "size" : "128x128", 35 | "idiom" : "mac", 36 | "filename" : "app_icon_256.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "256x256", 41 | "idiom" : "mac", 42 | "filename" : "app_icon_256.png", 43 | "scale" : "1x" 44 | }, 45 | { 46 | "size" : "256x256", 47 | "idiom" : "mac", 48 | "filename" : "app_icon_512.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "512x512", 53 | "idiom" : "mac", 54 | "filename" : "app_icon_512.png", 55 | "scale" : "1x" 56 | }, 57 | { 58 | "size" : "512x512", 59 | "idiom" : "mac", 60 | "filename" : "app_icon_1024.png", 61 | "scale" : "2x" 62 | } 63 | ], 64 | "info" : { 65 | "version" : 1, 66 | "author" : "xcode" 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- 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 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- 1 | // Application-level settings for the Runner target. 2 | // 3 | // This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the 4 | // future. If not, the values below would default to using the project name when this becomes a 5 | // 'flutter create' template. 6 | 7 | // The application's name. By default this is also the title of the Flutter window. 8 | PRODUCT_NAME = flutter_portfolio 9 | 10 | // The application's bundle identifier 11 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterPortfolio 12 | 13 | // The copyright displayed in application information 14 | PRODUCT_COPYRIGHT = Copyright © 2019 com.example. All rights reserved. 15 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- 1 | WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings 2 | GCC_WARN_UNDECLARED_SELECTOR = YES 3 | CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES 4 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE 5 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES 6 | CLANG_WARN_PRAGMA_PACK = YES 7 | CLANG_WARN_STRICT_PROTOTYPES = YES 8 | CLANG_WARN_COMMA = YES 9 | GCC_WARN_STRICT_SELECTOR_MATCH = YES 10 | CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES 11 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES 12 | GCC_WARN_SHADOW = YES 13 | CLANG_WARN_UNREACHABLE_CODE = YES 14 | -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.cs.allow-jit 8 | 9 | com.apple.security.network.client 10 | 11 | com.apple.security.network.server 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | $(FLUTTER_BUILD_NAME) 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSMinimumSystemVersion 24 | $(MACOSX_DEPLOYMENT_TARGET) 25 | NSHumanReadableCopyright 26 | $(PRODUCT_COPYRIGHT) 27 | NSMainNibFile 28 | MainMenu 29 | NSPrincipalClass 30 | NSApplication 31 | 32 | 33 | -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | class MainFlutterWindow: NSWindow { 5 | override func awakeFromNib() { 6 | let flutterViewController = FlutterViewController.init() 7 | let windowFrame = self.frame 8 | self.contentViewController = flutterViewController 9 | self.setFrame(windowFrame, display: true) 10 | 11 | RegisterGeneratedPlugins(registry: flutterViewController) 12 | 13 | super.awakeFromNib() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Welcome to Firebase Hosting 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 32 | 33 | 34 |
35 |

Welcome

36 |

Firebase Hosting Setup Complete

37 |

You're seeing this because you've successfully setup Firebase Hosting. Now it's time to go build something extraordinary!

38 | Open Hosting Documentation 39 |
40 |

Firebase SDK Loading…

41 | 42 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | archive: 5 | dependency: transitive 6 | description: 7 | name: archive 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.0.11" 11 | args: 12 | dependency: transitive 13 | description: 14 | name: args 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "1.5.2" 18 | async: 19 | dependency: transitive 20 | description: 21 | name: async 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.4.0" 25 | avatar_glow: 26 | dependency: "direct main" 27 | description: 28 | name: avatar_glow 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.0.0" 32 | boolean_selector: 33 | dependency: transitive 34 | description: 35 | name: boolean_selector 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.0.5" 39 | charcode: 40 | dependency: transitive 41 | description: 42 | name: charcode 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.1.2" 46 | collection: 47 | dependency: transitive 48 | description: 49 | name: collection 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.14.11" 53 | convert: 54 | dependency: transitive 55 | description: 56 | name: convert 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "2.1.1" 60 | crypto: 61 | dependency: transitive 62 | description: 63 | name: crypto 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "2.1.3" 67 | cupertino_icons: 68 | dependency: "direct main" 69 | description: 70 | name: cupertino_icons 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "0.1.2" 74 | extended_image: 75 | dependency: "direct main" 76 | description: 77 | name: extended_image 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "0.6.5" 81 | extended_image_library: 82 | dependency: "direct overridden" 83 | description: 84 | path: "." 85 | ref: dev 86 | resolved-ref: c005601d2aef37d3f76c33cf8e3c41768ed2fe6f 87 | url: "https://github.com/fluttercandies/extended_image_library.git" 88 | source: git 89 | version: "0.1.9" 90 | flutter: 91 | dependency: "direct main" 92 | description: flutter 93 | source: sdk 94 | version: "0.0.0" 95 | flutter_test: 96 | dependency: "direct dev" 97 | description: flutter 98 | source: sdk 99 | version: "0.0.0" 100 | font_awesome_flutter: 101 | dependency: "direct main" 102 | description: 103 | name: font_awesome_flutter 104 | url: "https://pub.dartlang.org" 105 | source: hosted 106 | version: "8.5.0" 107 | http: 108 | dependency: transitive 109 | description: 110 | name: http 111 | url: "https://pub.dartlang.org" 112 | source: hosted 113 | version: "0.12.0+2" 114 | http_client_helper: 115 | dependency: transitive 116 | description: 117 | name: http_client_helper 118 | url: "https://pub.dartlang.org" 119 | source: hosted 120 | version: "0.2.1" 121 | http_parser: 122 | dependency: transitive 123 | description: 124 | name: http_parser 125 | url: "https://pub.dartlang.org" 126 | source: hosted 127 | version: "3.1.3" 128 | image: 129 | dependency: transitive 130 | description: 131 | name: image 132 | url: "https://pub.dartlang.org" 133 | source: hosted 134 | version: "2.1.4" 135 | matcher: 136 | dependency: transitive 137 | description: 138 | name: matcher 139 | url: "https://pub.dartlang.org" 140 | source: hosted 141 | version: "0.12.6" 142 | meta: 143 | dependency: transitive 144 | description: 145 | name: meta 146 | url: "https://pub.dartlang.org" 147 | source: hosted 148 | version: "1.1.8" 149 | path: 150 | dependency: transitive 151 | description: 152 | name: path 153 | url: "https://pub.dartlang.org" 154 | source: hosted 155 | version: "1.6.4" 156 | path_provider: 157 | dependency: transitive 158 | description: 159 | name: path_provider 160 | url: "https://pub.dartlang.org" 161 | source: hosted 162 | version: "1.4.4" 163 | path_provider_fde: 164 | dependency: "direct overridden" 165 | description: 166 | path: "plugins/flutter_plugins/path_provider_fde" 167 | ref: HEAD 168 | resolved-ref: a075c245ffdfc17409a3fff12517cf416aa77c87 169 | url: "https://github.com/google/flutter-desktop-embedding/" 170 | source: git 171 | version: "0.0.1" 172 | pedantic: 173 | dependency: transitive 174 | description: 175 | name: pedantic 176 | url: "https://pub.dartlang.org" 177 | source: hosted 178 | version: "1.8.0+1" 179 | petitparser: 180 | dependency: transitive 181 | description: 182 | name: petitparser 183 | url: "https://pub.dartlang.org" 184 | source: hosted 185 | version: "2.4.0" 186 | platform: 187 | dependency: transitive 188 | description: 189 | name: platform 190 | url: "https://pub.dartlang.org" 191 | source: hosted 192 | version: "2.2.1" 193 | preload_page_view: 194 | dependency: "direct main" 195 | description: 196 | name: preload_page_view 197 | url: "https://pub.dartlang.org" 198 | source: hosted 199 | version: "0.1.4" 200 | quiver: 201 | dependency: transitive 202 | description: 203 | name: quiver 204 | url: "https://pub.dartlang.org" 205 | source: hosted 206 | version: "2.0.5" 207 | sky_engine: 208 | dependency: transitive 209 | description: flutter 210 | source: sdk 211 | version: "0.0.99" 212 | source_span: 213 | dependency: transitive 214 | description: 215 | name: source_span 216 | url: "https://pub.dartlang.org" 217 | source: hosted 218 | version: "1.5.5" 219 | stack_trace: 220 | dependency: transitive 221 | description: 222 | name: stack_trace 223 | url: "https://pub.dartlang.org" 224 | source: hosted 225 | version: "1.9.3" 226 | stream_channel: 227 | dependency: transitive 228 | description: 229 | name: stream_channel 230 | url: "https://pub.dartlang.org" 231 | source: hosted 232 | version: "2.0.0" 233 | string_scanner: 234 | dependency: transitive 235 | description: 236 | name: string_scanner 237 | url: "https://pub.dartlang.org" 238 | source: hosted 239 | version: "1.0.5" 240 | term_glyph: 241 | dependency: transitive 242 | description: 243 | name: term_glyph 244 | url: "https://pub.dartlang.org" 245 | source: hosted 246 | version: "1.1.0" 247 | test_api: 248 | dependency: transitive 249 | description: 250 | name: test_api 251 | url: "https://pub.dartlang.org" 252 | source: hosted 253 | version: "0.2.11" 254 | typed_data: 255 | dependency: transitive 256 | description: 257 | name: typed_data 258 | url: "https://pub.dartlang.org" 259 | source: hosted 260 | version: "1.1.6" 261 | url_launcher: 262 | dependency: "direct main" 263 | description: 264 | name: url_launcher 265 | url: "https://pub.dartlang.org" 266 | source: hosted 267 | version: "5.2.5" 268 | url_launcher_fde: 269 | dependency: "direct overridden" 270 | description: 271 | path: "plugins/flutter_plugins/url_launcher_fde" 272 | ref: HEAD 273 | resolved-ref: a075c245ffdfc17409a3fff12517cf416aa77c87 274 | url: "https://github.com/google/flutter-desktop-embedding/" 275 | source: git 276 | version: "0.0.1" 277 | url_launcher_platform_interface: 278 | dependency: transitive 279 | description: 280 | name: url_launcher_platform_interface 281 | url: "https://pub.dartlang.org" 282 | source: hosted 283 | version: "1.0.1" 284 | vector_math: 285 | dependency: transitive 286 | description: 287 | name: vector_math 288 | url: "https://pub.dartlang.org" 289 | source: hosted 290 | version: "2.0.8" 291 | xml: 292 | dependency: transitive 293 | description: 294 | name: xml 295 | url: "https://pub.dartlang.org" 296 | source: hosted 297 | version: "3.5.0" 298 | sdks: 299 | dart: ">=2.4.0 <3.0.0" 300 | flutter: ">=1.9.1+hotfix.4 <2.0.0" 301 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: flutter_portfolio 2 | description: A new Flutter project. 3 | 4 | # The following defines the version and build number for your application. 5 | # A version number is three numbers separated by dots, like 1.2.43 6 | # followed by an optional build number separated by a +. 7 | # Both the version and the builder number may be overridden in flutter 8 | # build by specifying --build-name and --build-number, respectively. 9 | # In Android, build-name is used as versionName while build-number used as versionCode. 10 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 11 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 12 | # Read more about iOS versioning at 13 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 14 | version: 1.0.0+1 15 | 16 | environment: 17 | sdk: ">=2.2.2 <3.0.0" 18 | 19 | dependencies: 20 | flutter: 21 | sdk: flutter 22 | 23 | # The following adds the Cupertino Icons font to your application. 24 | # Use with the CupertinoIcons class for iOS style icons. 25 | cupertino_icons: ^0.1.2 26 | avatar_glow: ^1.0.0 27 | font_awesome_flutter: ^8.2.0 28 | preload_page_view: ^0.1.4 29 | url_launcher: ^5.2.5 30 | extended_image: ^0.6.5 31 | 32 | dependency_overrides: 33 | extended_image_library: 34 | git: 35 | url: https://github.com/fluttercandies/extended_image_library.git 36 | ref: dev 37 | path_provider_fde: 38 | git: 39 | url: https://github.com/google/flutter-desktop-embedding/ 40 | path: plugins/flutter_plugins/path_provider_fde 41 | url_launcher_fde: 42 | git: 43 | url: https://github.com/google/flutter-desktop-embedding/ 44 | path: plugins/flutter_plugins/url_launcher_fde 45 | 46 | dev_dependencies: 47 | flutter_test: 48 | sdk: flutter 49 | 50 | 51 | # For information on the generic Dart part of this file, see the 52 | # following page: https://dart.dev/tools/pub/pubspec 53 | 54 | # The following section is specific to Flutter. 55 | flutter: 56 | 57 | # The following line ensures that the Material Icons font is 58 | # included with your application, so that you can use the icons in 59 | # the material Icons class. 60 | uses-material-design: true 61 | 62 | fonts: 63 | - family: Nunito 64 | fonts: 65 | - asset: assets/fonts/nunitoSemiBold.ttf 66 | - asset: assets/fonts/nunitoBold.ttf 67 | weight: 700 68 | 69 | 70 | assets: 71 | - assets/images/avatar.png 72 | - assets/images/lucknow.png 73 | - assets/images/lucknow_heritage.png 74 | - assets/images/laptop.png 75 | - assets/images/mobile.png 76 | 77 | - assets/images/artist/i1.jpg 78 | - assets/images/artist/i2.jpg 79 | - assets/images/artist/i3.jpg 80 | - assets/images/artist/i4.jpg 81 | - assets/images/artist/i5.jpg 82 | - assets/images/pen.png 83 | - assets/images/plane_text.png 84 | - assets/images/unacademy.png 85 | - assets/images/unacademy/1.png 86 | - assets/images/unacademy/2.png 87 | - assets/images/unacademy/3.png 88 | - assets/images/unacademy/4.png 89 | 90 | - assets/images/intro/b2.jpg 91 | - assets/images/intro/footer.png 92 | 93 | - assets/images/about/lucknow.jpg 94 | 95 | - assets/images/education/roorkee.jpg 96 | 97 | - assets/images/work/workozy.png 98 | - assets/images/work/workozy_track.png 99 | - assets/images/work/office.jpg 100 | 101 | - assets/images/skills/bike.jpg 102 | # To add assets to your application, add an assets section, like this: 103 | # assets: 104 | # - images/a_dot_burr.jpeg 105 | # - images/a_dot_ham.jpeg 106 | 107 | # An image asset can refer to one or more resolution-specific "variants", see 108 | # https://flutter.dev/assets-and-images/#resolution-aware. 109 | 110 | # For details regarding adding assets from package dependencies, see 111 | # https://flutter.dev/assets-and-images/#from-packages 112 | 113 | # To add custom fonts to your application, add a fonts section here, 114 | # in this "flutter" section. Each entry in this list should have a 115 | # "family" key with the font family name, and a "fonts" key with a 116 | # list giving the asset and other descriptors for the font. For 117 | # example: 118 | # fonts: 119 | # - family: Schyler 120 | # fonts: 121 | # - asset: fonts/Schyler-Regular.ttf 122 | # - asset: fonts/Schyler-Italic.ttf 123 | # style: italic 124 | # - family: Trajan Pro 125 | # fonts: 126 | # - asset: fonts/TrajanPro.ttf 127 | # - asset: fonts/TrajanPro_Bold.ttf 128 | # weight: 700 129 | # 130 | # For details regarding fonts from package dependencies, 131 | # see https://flutter.dev/custom-fonts/#from-packages 132 | -------------------------------------------------------------------------------- /src/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/src/s1.png -------------------------------------------------------------------------------- /src/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/src/s2.png -------------------------------------------------------------------------------- /src/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/src/s3.png -------------------------------------------------------------------------------- /src/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/src/s4.png -------------------------------------------------------------------------------- /src/s5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/src/s5.png -------------------------------------------------------------------------------- /src/s6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apgapg/flutter_portfolio/18bdc51faaefd1d437d8645ed70077ddbdfc827d/src/s6.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility that Flutter provides. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | 11 | import 'package:flutter_portfolio/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget(MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ayush P Gupta 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | --------------------------------------------------------------------------------