├── ios ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner │ ├── Runner-Bridging-Header.h │ ├── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ ├── README.md │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── 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-1024x1024@1x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── Contents.json │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ └── project.pbxproj ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist └── .gitignore ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ └── Icon-512.png ├── manifest.json └── index.html ├── assets ├── images │ └── bg.jpeg └── icons │ ├── check.svg │ ├── linkedin.svg │ ├── github.svg │ ├── twitter.svg │ ├── download.svg │ ├── youtube.svg │ ├── behance.svg │ └── dribble.svg ├── android ├── gradle.properties ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── 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 │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── values-night │ │ │ │ │ └── styles.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── noor │ │ │ │ │ └── yasser │ │ │ │ │ └── ps │ │ │ │ │ └── portfolio_website │ │ │ │ │ └── MainActivity.kt │ │ │ └── AndroidManifest.xml │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── .gitignore ├── settings.gradle └── build.gradle ├── .metadata ├── lib ├── constant │ ├── ColorsCons.dart │ └── string.dart ├── util │ ├── MenuController.dart │ ├── AreaInfoText.dart │ ├── Responsive.dart │ └── AnimatedCircularProgressIndicator.dart ├── screen │ ├── component │ │ ├── home │ │ │ ├── Header.dart │ │ │ ├── HomeBanner.dart │ │ │ └── FileInfoCardGridView.dart │ │ └── side_menu │ │ │ ├── Skills.dart │ │ │ ├── Knowledges.dart │ │ │ ├── Coding.dart │ │ │ ├── info.dart │ │ │ └── SideMenu.dart │ └── main │ │ └── HomeScreen.dart ├── main.dart └── model │ ├── Project.dart │ └── Recommendation.dart ├── README.md ├── .gitignore ├── pubspec.yaml └── pubspec.lock /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/web/favicon.png -------------------------------------------------------------------------------- /assets/images/bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/assets/images/bg.jpeg -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/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/noor1yasser9/portfolio_website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noor1yasser9/portfolio_website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/noor/yasser/ps/portfolio_website/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.noor.yasser.ps.portfolio_website 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /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-6.7-all.zip 7 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/icons/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.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: c5a4b4029c0798f37c4a39b479d7cb75daa7b05c 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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. -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/constant/ColorsCons.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | const primaryColor = Color(0xffffc107); 4 | const secondaryColor = Color(0xff24230); 5 | const darkColor = Color(0xff191923); 6 | const bodyTextColor = Color(0xff8b8b8d); 7 | const bgColor = Color(0xff1e1e28); 8 | 9 | const defaultPadding = 20.0; 10 | const defaultDuration = Duration(seconds: 1); 11 | const maxWidth = 1440.0; 12 | 13 | -------------------------------------------------------------------------------- /lib/util/MenuController.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class MenuController extends ChangeNotifier { 4 | final GlobalKey _scaffoldKey = GlobalKey(); 5 | 6 | GlobalKey get scaffoldKey => _scaffoldKey; 7 | 8 | void controlMenu() { 9 | if (!_scaffoldKey.currentState.isDrawerOpen) { 10 | _scaffoldKey.currentState.openDrawer(); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Responsive Portfolio Website 2 | FlutterWeb UI, We design a simple web app by using flutter, it has only a menu and some text on left side also a background image. 3 | 4 | 5 | ### Demo Url: https://chat-app-flutter-cf389.web.app/#/ 6 | ### Video Youtub: https://www.youtube.com/watch?v=0jETqABOtu8&ab_channel=NoorEl-Nahhal 7 | 8 | ## Screenshot 9 | ![Group 2979](https://user-images.githubusercontent.com/41232970/124959201-a6180000-e023-11eb-9a64-f83e2219c872.png) 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /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/.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/Flutter.podspec 20 | Flutter/Generated.xcconfig 21 | Flutter/app.flx 22 | Flutter/app.zip 23 | Flutter/flutter_assets/ 24 | Flutter/flutter_export_environment.sh 25 | ServiceDefinitions.json 26 | Runner/GeneratedPluginRegistrant.* 27 | 28 | # Exceptions to above rules. 29 | !default.mode1v3 30 | !default.mode2v3 31 | !default.pbxuser 32 | !default.perspectivev3 33 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "portfolio_website", 3 | "short_name": "portfolio_website", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "A new Flutter project.", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | } 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.3.50' 3 | repositories { 4 | google() 5 | jcenter() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:4.1.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | jcenter() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | } 25 | subprojects { 26 | project.evaluationDependsOn(':app') 27 | } 28 | 29 | task clean(type: Delete) { 30 | delete rootProject.buildDir 31 | } 32 | -------------------------------------------------------------------------------- /assets/icons/linkedin.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /lib/util/AreaInfoText.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/constant/ColorsCons.dart'; 3 | 4 | class AreaInfoText extends StatelessWidget { 5 | const AreaInfoText({ 6 | Key key, 7 | this.title, 8 | this.text, 9 | }) : super(key: key); 10 | 11 | final String title, text; 12 | 13 | @override 14 | Widget build(BuildContext context) { 15 | return Padding( 16 | padding: const EdgeInsets.only(bottom: defaultPadding / 2), 17 | child: Row( 18 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 19 | children: [ 20 | SelectableText( 21 | title, 22 | style: TextStyle(color: Colors.white), 23 | ), 24 | SelectableText(text), 25 | ], 26 | ), 27 | ); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /lib/screen/component/home/Header.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/util/MenuController.dart'; 3 | import 'package:portfolio_website/util/Responsive.dart'; 4 | import 'package:provider/provider.dart'; 5 | 6 | class Header extends StatelessWidget { 7 | const Header({ 8 | Key key, 9 | }) : super(key: key); 10 | 11 | @override 12 | Widget build(BuildContext context) { 13 | return Row( 14 | children: [ 15 | if (!Responsive.isDesktop(context)) 16 | IconButton( 17 | icon: Icon(Icons.menu), 18 | onPressed: context.read().controlMenu, 19 | ), 20 | if (!Responsive.isMobile(context)) 21 | Spacer(flex: Responsive.isDesktop(context) ? 2 : 1), 22 | ], 23 | ); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /assets/icons/github.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 8.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /lib/constant/string.dart: -------------------------------------------------------------------------------- 1 | const desc = 2 | "A Masterful Android Developer & UI|UX Designer 🚀 | Open Source Contributor 🌟 | Kotlin 💥 | Java ⚡️"; 3 | const LINK_IMAGE = 4 | "https://media-exp1.licdn.com/dms/image/C4E03AQFMtM7YRjAdhg/profile-displayphoto-shrink_800_800/0/1608195108321?e=1630540800&v=beta&t=Dwnhay_lNSKrRkV6XgPUNgFHERnk2578sPbYDZPX5Ac"; 5 | 6 | const LINK_LINKED_IN = 'https://www.linkedin.com/in/noor1yasser9/'; 7 | const LINK_BEHANCE = 'https://www.behance.net/mrh610371211'; 8 | const LINK_YOUTUBE = 'https://www.youtube.com/channel/UCS4VHaTpm-gv0Y1dOmzyoZA'; 9 | const LINK_GITHUB = 'https://github.com/noor1yasser9'; 10 | const LINK_TWITTER = 'https://twitter.com/Noor9Yasser1'; 11 | const LINK_CV = "https://github.com/noor1yasser9/noor1yasser9/files/6740199/2021.pdf"; 12 | 13 | const LINK_UPWORK = 'https://www.upwork.com/freelancers/noor1yasser9'; 14 | const LINK_MOSTAQL = 'https://mostaql.com/u/nurbk77'; 15 | -------------------------------------------------------------------------------- /.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 | **/ios/Flutter/.last_build_id 26 | .dart_tool/ 27 | .flutter-plugins 28 | .flutter-plugins-dependencies 29 | .packages 30 | .pub-cache/ 31 | .pub/ 32 | /build/ 33 | 34 | # Web related 35 | lib/generated_plugin_registrant.dart 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | 43 | # Android Studio will place build artifacts here 44 | /android/app/debug 45 | /android/app/profile 46 | /android/app/release 47 | -------------------------------------------------------------------------------- /assets/icons/twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /assets/icons/download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/util/Responsive.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | // We will modify it once we have our final design 4 | 5 | class Responsive extends StatelessWidget { 6 | final Widget mobile; 7 | final Widget mobileLarge; 8 | final Widget tablet; 9 | final Widget desktop; 10 | 11 | const Responsive({ 12 | Key key, 13 | this.mobile, 14 | this.tablet, 15 | this.desktop, 16 | this.mobileLarge, 17 | }) : super(key: key); 18 | 19 | static bool isMobile(BuildContext context) => 20 | MediaQuery.of(context).size.width <= 500; 21 | 22 | static bool isMobileLarge(BuildContext context) => 23 | MediaQuery.of(context).size.width <= 700; 24 | 25 | static bool isTablet(BuildContext context) => 26 | MediaQuery.of(context).size.width < 1024; 27 | 28 | static bool isDesktop(BuildContext context) => 29 | MediaQuery.of(context).size.width >= 1024; 30 | 31 | @override 32 | Widget build(BuildContext context) { 33 | final Size _size = MediaQuery.of(context).size; 34 | if (_size.width >= 1024) { 35 | return desktop; 36 | } else if (_size.width >= 700 && tablet != null) { 37 | return tablet; 38 | } else if (_size.width >= 450 && mobileLarge != null) { 39 | return mobileLarge; 40 | } else { 41 | return mobile; 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /assets/icons/youtube.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 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 | -------------------------------------------------------------------------------- /lib/screen/component/side_menu/Skills.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/constant/ColorsCons.dart'; 3 | import 'package:portfolio_website/util/AnimatedCircularProgressIndicator.dart'; 4 | 5 | class Skills extends StatelessWidget { 6 | const Skills({Key key}) : super(key: key); 7 | 8 | @override 9 | Widget build(BuildContext context) { 10 | return Column( 11 | crossAxisAlignment: CrossAxisAlignment.start, 12 | children: [ 13 | Divider(), 14 | Padding( 15 | padding: const EdgeInsets.symmetric(vertical: defaultPadding), 16 | child: Text( 17 | "Mobile Development Skills", 18 | style: Theme.of(context).textTheme.subtitle2, 19 | ), 20 | ), 21 | Row( 22 | children: [ 23 | Expanded( 24 | child: AnimatedCircularProgressIndicator( 25 | percentage: 0.9, 26 | label: "Android", 27 | ), 28 | ), 29 | SizedBox(width: defaultPadding), 30 | Expanded( 31 | child: AnimatedCircularProgressIndicator( 32 | percentage: 0.50, 33 | label: "Flutter", 34 | 35 | ), 36 | ), 37 | SizedBox(width: defaultPadding), 38 | Expanded( 39 | child: AnimatedCircularProgressIndicator( 40 | percentage: 0.30, 41 | label: "IOS", 42 | ), 43 | ), 44 | ], 45 | ), 46 | ], 47 | ); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /lib/screen/component/side_menu/Knowledges.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/constant/ColorsCons.dart'; 3 | import 'package:flutter_svg/flutter_svg.dart'; 4 | 5 | class Knowledges extends StatelessWidget { 6 | const Knowledges({ 7 | Key key, 8 | }) : super(key: key); 9 | 10 | @override 11 | Widget build(BuildContext context) { 12 | return Column( 13 | crossAxisAlignment: CrossAxisAlignment.start, 14 | children: [ 15 | Divider(), 16 | Padding( 17 | padding: const EdgeInsets.symmetric( 18 | vertical: defaultPadding), 19 | child: Text( 20 | "Knowledges", 21 | style: Theme.of(context).textTheme.subtitle2, 22 | ), 23 | ), 24 | KnowledgeText(text: "Android Native, Kotlin, Java"), 25 | KnowledgeText(text: "IOS Native, Swift"), 26 | KnowledgeText(text: "Flutter, Dart"), 27 | KnowledgeText(text: "Git, Github, Gitlab"), 28 | ], 29 | ); 30 | } 31 | } 32 | 33 | class KnowledgeText extends StatelessWidget { 34 | const KnowledgeText({ 35 | Key key, 36 | this.text, 37 | }) : super(key: key); 38 | 39 | final String text; 40 | 41 | @override 42 | Widget build(BuildContext context) { 43 | return Padding( 44 | padding: const EdgeInsets.only(bottom: defaultPadding / 2), 45 | child: Row( 46 | children: [ 47 | SvgPicture.asset("assets/icons/check.svg"), 48 | SizedBox(width: defaultPadding / 2), 49 | Text(text), 50 | ], 51 | ), 52 | ); 53 | } 54 | } -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:google_fonts/google_fonts.dart'; 3 | import 'package:portfolio_website/constant/ColorsCons.dart'; 4 | import 'package:portfolio_website/screen/component/home/HomeBanner.dart'; 5 | import 'package:portfolio_website/screen/main/HomeScreen.dart'; 6 | import 'package:portfolio_website/util/MenuController.dart'; 7 | import 'package:provider/provider.dart'; 8 | void main() { 9 | runApp(MyApp()); 10 | } 11 | 12 | class MyApp extends StatelessWidget { 13 | // This widget is the root of your application. 14 | @override 15 | Widget build(BuildContext context) { 16 | return MaterialApp( 17 | debugShowCheckedModeBanner: false, 18 | title: 'Flutter Demo', 19 | // we are using dark theme and we modify it as our need 20 | theme: ThemeData.dark().copyWith( 21 | primaryColor: primaryColor, 22 | scaffoldBackgroundColor: bgColor, 23 | canvasColor: bgColor, 24 | textTheme: GoogleFonts.poppinsTextTheme(Theme.of(context).textTheme) 25 | .apply(bodyColor: Colors.white) 26 | .copyWith( 27 | bodyText1: TextStyle(color: bodyTextColor), 28 | bodyText2: TextStyle(color: bodyTextColor), 29 | ), 30 | ), 31 | home: MultiProvider( 32 | providers: [ 33 | ChangeNotifierProvider( 34 | create: (context) => MenuController(), 35 | ), 36 | ], 37 | child: HomeScreen( 38 | children: [ 39 | HomeBanner(), 40 | // That's it for part 1 41 | ], 42 | ), 43 | ), 44 | ); 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /lib/screen/component/side_menu/Coding.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/constant/ColorsCons.dart'; 3 | import 'package:portfolio_website/util/AnimatedCircularProgressIndicator.dart'; 4 | 5 | class Coding extends StatelessWidget { 6 | const Coding({ 7 | Key key, 8 | }) : super(key: key); 9 | 10 | @override 11 | Widget build(BuildContext context) { 12 | return Column( 13 | crossAxisAlignment: CrossAxisAlignment.start, 14 | children: [ 15 | Divider(), 16 | Padding( 17 | padding: const EdgeInsets.symmetric(vertical: defaultPadding), 18 | child: Text( 19 | "Development Language Skills", 20 | style: Theme.of(context).textTheme.subtitle2, 21 | ), 22 | ), 23 | AnimatedLinearProgressIndicator( 24 | percentage: 0.9, 25 | label: "Kotlin", 26 | ), 27 | AnimatedLinearProgressIndicator( 28 | percentage: 0.9, 29 | label: "Java", 30 | ), 31 | AnimatedLinearProgressIndicator( 32 | percentage: 0.7, 33 | label: "Swift", 34 | ), 35 | AnimatedLinearProgressIndicator( 36 | percentage: 0.60, 37 | label: "Dart", 38 | ), 39 | AnimatedLinearProgressIndicator( 40 | percentage: 0.34, 41 | label: "JavaScript", 42 | ),AnimatedLinearProgressIndicator( 43 | percentage: 0.3, 44 | label: "HTML", 45 | ), 46 | AnimatedLinearProgressIndicator( 47 | percentage: 0.25, 48 | label: "CSS", 49 | ), 50 | ], 51 | ); 52 | } 53 | } -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | portfolio_website 30 | 31 | 32 | 33 | 36 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /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 | portfolio_website 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 | -------------------------------------------------------------------------------- /assets/icons/behance.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /lib/screen/main/HomeScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/constant/ColorsCons.dart'; 3 | import 'package:portfolio_website/screen/component/home/FileInfoCardGridView.dart'; 4 | import 'package:portfolio_website/screen/component/home/Header.dart'; 5 | import 'package:portfolio_website/screen/component/side_menu/SideMenu.dart'; 6 | import 'package:portfolio_website/util/MenuController.dart'; 7 | import 'package:provider/provider.dart'; 8 | import 'package:portfolio_website/util/Responsive.dart'; 9 | 10 | class HomeScreen extends StatelessWidget { 11 | final List children; 12 | 13 | const HomeScreen({Key key, this.children}) : super(key: key); 14 | 15 | @override 16 | Widget build(BuildContext context) { 17 | final Size _size = MediaQuery.of(context).size; 18 | return Scaffold( 19 | key: context.read().scaffoldKey, 20 | drawer: SideMenu(), 21 | body: Container( 22 | constraints: BoxConstraints(maxWidth: maxWidth), 23 | child: Row( 24 | children: [ 25 | if (Responsive.isDesktop(context)) SideMenu(), 26 | Expanded( 27 | flex: 7, 28 | child: SingleChildScrollView( 29 | child: Column( 30 | children: [ 31 | Header(), 32 | ...children, 33 | Responsive( 34 | mobile: FileInfoCardGridView( 35 | crossAxisCount: _size.width < 650 ? 1 : 1, 36 | ), 37 | tablet: FileInfoCardGridView(), 38 | desktop: FileInfoCardGridView( 39 | ), 40 | ), 41 | ], 42 | ), 43 | )), 44 | ], 45 | ), 46 | ), 47 | ); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion 30 30 | 31 | sourceSets { 32 | main.java.srcDirs += 'src/main/kotlin' 33 | } 34 | 35 | defaultConfig { 36 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 37 | applicationId "com.noor.yasser.ps.portfolio_website" 38 | minSdkVersion 16 39 | targetSdkVersion 30 40 | versionCode flutterVersionCode.toInteger() 41 | versionName flutterVersionName 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 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 59 | } 60 | -------------------------------------------------------------------------------- /lib/screen/component/side_menu/info.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/constant/ColorsCons.dart'; 3 | import 'package:portfolio_website/constant/string.dart'; 4 | import 'dart:js' as js; 5 | class Info extends StatelessWidget { 6 | const Info({Key key}) : super(key: key); 7 | 8 | @override 9 | Widget build(BuildContext context) { 10 | return AspectRatio( 11 | aspectRatio: 1, 12 | child: Container( 13 | color: Color(0xff242430), 14 | child: Column( 15 | children: [ 16 | Spacer(), 17 | CircleAvatar( 18 | radius: 50, 19 | backgroundImage: NetworkImage(LINK_IMAGE), 20 | ), 21 | Container( 22 | alignment: Alignment.center, 23 | margin: EdgeInsets.only(top: 4, left: 16, right: 16), 24 | child: SelectableText( 25 | "Noor Yasser El Nahhal", 26 | style: Theme.of(context).textTheme.subtitle2, 27 | ), 28 | ), 29 | Container( 30 | alignment: Alignment.center, 31 | margin: EdgeInsets.only(top: 4, left: 16, right: 16,bottom: 4), 32 | child: SelectableText( 33 | desc, 34 | textAlign: TextAlign.center, 35 | style: TextStyle(fontWeight: FontWeight.w200, height: 1.5), 36 | ), 37 | ), 38 | Container( 39 | margin: EdgeInsets.only(top: defaultPadding), 40 | alignment: Alignment.center, 41 | color: Color(0xFF24242E), 42 | child: SizedBox( 43 | width: 120, 44 | child: ElevatedButton( 45 | onPressed: () { 46 | js.context.callMethod('open', [LINK_GITHUB]); 47 | }, 48 | child: Text("Follow me"), 49 | style: ElevatedButton.styleFrom( 50 | primary: Color(0xFF3A3A42), 51 | ), 52 | ), 53 | )), 54 | Spacer(), 55 | ], 56 | ), 57 | ), 58 | ); 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 13 | 17 | 21 | 26 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/util/AnimatedCircularProgressIndicator.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/constant/ColorsCons.dart'; 3 | 4 | class AnimatedCircularProgressIndicator extends StatelessWidget { 5 | const AnimatedCircularProgressIndicator({ 6 | Key key, 7 | this.percentage, 8 | this.label, 9 | }) : super(key: key); 10 | 11 | final double percentage; 12 | final String label; 13 | 14 | @override 15 | Widget build(BuildContext context) { 16 | return Column( 17 | children: [ 18 | AspectRatio( 19 | aspectRatio: 1, 20 | child: TweenAnimationBuilder( 21 | tween: Tween(begin: 0, end: percentage), 22 | duration: defaultDuration, 23 | builder: (context, double value, child) => Stack( 24 | fit: StackFit.expand, 25 | children: [ 26 | CircularProgressIndicator( 27 | value: value, 28 | valueColor: AlwaysStoppedAnimation(primaryColor), 29 | backgroundColor: darkColor, 30 | ), 31 | Center( 32 | child: Text( 33 | (value * 100).toInt().toString() + "%", 34 | style: Theme.of(context).textTheme.subtitle1, 35 | ), 36 | ), 37 | ], 38 | ), 39 | ), 40 | ), 41 | SizedBox(height: defaultPadding / 2), 42 | Text( 43 | label, 44 | maxLines: 1, 45 | overflow: TextOverflow.ellipsis, 46 | style: Theme.of(context).textTheme.subtitle2, 47 | ), 48 | ], 49 | ); 50 | } 51 | } 52 | 53 | class AnimatedLinearProgressIndicator extends StatelessWidget { 54 | const AnimatedLinearProgressIndicator({ 55 | Key key, 56 | this.percentage, 57 | this.label, 58 | }) : super(key: key); 59 | 60 | final double percentage; 61 | final String label; 62 | 63 | @override 64 | Widget build(BuildContext context) { 65 | return Padding( 66 | padding: const EdgeInsets.only(bottom: defaultPadding), 67 | child: TweenAnimationBuilder( 68 | tween: Tween(begin: 0, end: percentage), 69 | duration: defaultDuration, 70 | builder: (context, double value, child) => Column( 71 | children: [ 72 | Row( 73 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 74 | children: [ 75 | Text( 76 | label, 77 | style: TextStyle(color: Colors.white), 78 | ), 79 | Text((value * 100).toInt().toString() + "%"), 80 | ], 81 | ), 82 | SizedBox(height: defaultPadding / 2), 83 | LinearProgressIndicator( 84 | value: value, 85 | valueColor: AlwaysStoppedAnimation(primaryColor), 86 | backgroundColor: darkColor, 87 | ), 88 | ], 89 | ), 90 | ), 91 | ); 92 | } 93 | } 94 | -------------------------------------------------------------------------------- /lib/model/Project.dart: -------------------------------------------------------------------------------- 1 | class Project { 2 | final String title, description, link, lang; 3 | 4 | Project({this.title, this.description, this.link, this.lang}); 5 | } 6 | 7 | const KOTLIN = "Kotlin"; 8 | const DART = "Dart"; 9 | const SWIFT = "Swift"; 10 | 11 | List demo_projects = [ 12 | Project( 13 | title: "Chat Socket", 14 | description: 15 | "This is a simple chat demo for socket.io and Android. You can connect to https://socket-io-chat.now.sh using this app.", 16 | link: "https://github.com/noor1yasser9/ChatSocket", 17 | lang: "Kotlin"), 18 | Project( 19 | title: "Country Weather", 20 | description: 21 | "Weather app is a simple weather forecast app, which uses some APIs to fetch 5 day / 3 hour forecast data from the OpenWeatherMap and to fetch places,cities,counties,coords etc. from Algolia Places. The main goal of this app is to be a sample of how to build an high quality Android application that uses the Architecture components, Dagger etc. in Kotlin.", 22 | link: "https://github.com/noor1yasser9/CountryWeather", 23 | lang: "Kotlin"), 24 | Project( 25 | title: "Movie App Q", 26 | description: 27 | "MovieAppQ is a sample Android project using The Movie DB API based on MVVM architecture. It showcases the app development with well-designed architecture and up-to-date Android tech stacks.", 28 | link: "https://github.com/noor1yasser9/MovieAppQ", 29 | lang: "Kotlin"), 30 | Project( 31 | title: "Image App", 32 | description: 33 | "A simple Flutter application showing how to load basic UI components and fetch data from APIs.", 34 | link: 35 | "https://www.youtube.com/watch?v=TsUi0tcxF_c&list=PLIf5OoJZjgrBsmqnEcXHKnWvEe4_0j16C&index=2&ab_channel=NoorEl-Nahhal", 36 | lang: "Dart"), 37 | Project( 38 | title: "Chat App", 39 | description: 40 | "A chat app made by Flutter and Firebase, Support login with email account, chat with any user, send text, image and sticker, update avatar and profile, and show notifications are supported.", 41 | link: 42 | "https://www.youtube.com/watch?v=jDd5Z2pz8Yo&ab_channel=NoorEl-Nahhal", 43 | lang: "Dart"), 44 | Project( 45 | title: "Note App", 46 | description: 47 | "In this a simple app you can learn to deal with an API (add, update, delete, view)", 48 | link: 49 | "https://www.youtube.com/watch?v=ShG-00YMhwU&list=PLIf5OoJZjgrBsmqnEcXHKnWvEe4_0j16C&ab_channel=NoorEl-Nahhal", 50 | lang: "Dart"), 51 | Project( 52 | title: "Core Data Image List App", 53 | description: 54 | "Learn how to use Core Data for iOS to do local data storage! In this lesson, you'll learn how Core Data works and the basics of how you'll use it in your iOS app.", 55 | link: 56 | "https://www.youtube.com/watch?v=Qqh_I7SY64c&ab_channel=NoorEl-Nahhal", 57 | lang: "Swift"), 58 | Project( 59 | title: "Food Ordering App", 60 | description: "My first project in programming applications using Swift", 61 | link: 62 | "https://www.youtube.com/watch?v=n8XAUWWLz6Y&ab_channel=NoorEl-Nahhal", 63 | lang: "Swift"), 64 | ]; 65 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: portfolio_website 2 | description: A new Flutter project. 3 | 4 | # The following line prevents the package from being accidentally published to 5 | # pub.dev using `pub publish`. This is preferred for private packages. 6 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 7 | 8 | # The following defines the version and build number for your application. 9 | # A version number is three numbers separated by dots, like 1.2.43 10 | # followed by an optional build number separated by a +. 11 | # Both the version and the builder number may be overridden in flutter 12 | # build by specifying --build-name and --build-number, respectively. 13 | # In Android, build-name is used as versionName while build-number used as versionCode. 14 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 16 | # Read more about iOS versioning at 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 18 | version: 1.0.0+1 19 | 20 | environment: 21 | sdk: ">=2.7.0 <3.0.0" 22 | 23 | dependencies: 24 | flutter: 25 | sdk: flutter 26 | 27 | 28 | # The following adds the Cupertino Icons font to your application. 29 | # Use with the CupertinoIcons class for iOS style icons. 30 | cupertino_icons: ^1.0.2 31 | 32 | dev_dependencies: 33 | flutter_test: 34 | sdk: flutter 35 | google_fonts: ^2.1.0 36 | flutter_svg: ^0.22.0 37 | animated_text_kit: ^4.2.1 38 | provider: ^5.0.0 39 | flutter_staggered_grid_view: ^0.3.3 40 | # For information on the generic Dart part of this file, see the 41 | # following page: https://dart.dev/tools/pub/pubspec 42 | 43 | # The following section is specific to Flutter. 44 | flutter: 45 | 46 | # The following line ensures that the Material Icons font is 47 | # included with your application, so that you can use the icons in 48 | # the material Icons class. 49 | uses-material-design: true 50 | 51 | # To add assets to your application, add an assets section, like this: 52 | assets: 53 | - assets/icons/ 54 | - assets/images/ 55 | 56 | # An image asset can refer to one or more resolution-specific "variants", see 57 | # https://flutter.dev/assets-and-images/#resolution-aware. 58 | 59 | # For details regarding adding assets from package dependencies, see 60 | # https://flutter.dev/assets-and-images/#from-packages 61 | 62 | # To add custom fonts to your application, add a fonts section here, 63 | # in this "flutter" section. Each entry in this list should have a 64 | # "family" key with the font family name, and a "fonts" key with a 65 | # list giving the asset and other descriptors for the font. For 66 | # example: 67 | # fonts: 68 | # - family: Schyler 69 | # fonts: 70 | # - asset: fonts/Schyler-Regular.ttf 71 | # - asset: fonts/Schyler-Italic.ttf 72 | # style: italic 73 | # - family: Trajan Pro 74 | # fonts: 75 | # - asset: fonts/TrajanPro.ttf 76 | # - asset: fonts/TrajanPro_Bold.ttf 77 | # weight: 700 78 | # 79 | # For details regarding fonts from package dependencies, 80 | # see https://flutter.dev/custom-fonts/#from-packages 81 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/model/Recommendation.dart: -------------------------------------------------------------------------------- 1 | class Recommendation { 2 | final String name, source, text; 3 | 4 | Recommendation({this.name, this.source, this.text}); 5 | } 6 | 7 | final List demo_recommendations = [ 8 | Recommendation( 9 | name: "Boukhers Yasser", 10 | source: "Upwork", 11 | text: 12 | "Again Noor did a great job! really more than expected, we wanted to add more features to our Android application, and Noor did all the requirements quickly with good code quality. Highly recommend :)"), 13 | Recommendation( 14 | name: "Boukhers Yasser", 15 | source: "Upwork", 16 | text: 17 | "Noor did really a great job, he is methodic and has a large knowledge when it comes to Android development (Firebase, Parse Server, User experience), he did more than we expected, highly recommend and we will definitely hire him again."), 18 | Recommendation( 19 | name: "Boukhers Yasser", 20 | source: "Upwork", 21 | text: 22 | "Noor as always was amazing again, he did all the requirements with more than we expected, will definitely hire you again."), 23 | Recommendation( 24 | name: "Kolapo Obanewa", 25 | source: "Upwork", 26 | text: 27 | "I enjoyed working on this project. All expectations and requirements were laid out in advance and the freelancer responded to any of my requests for clarification. I enjoyed working with him. Good job! Thanks."), 28 | Recommendation( 29 | name: "Avinash Patel", 30 | source: "Upwork", 31 | text: 32 | "Noor is fantastic! Very knowledgeable and excellent to work with him. We will continue to use him when we need an Android Apps developer. Thanks"), 33 | Recommendation( 34 | name: "Fernando Atila ", 35 | source: "Upwork", 36 | text: "Noor is so professional i recommend you guys to take him :)"), 37 | Recommendation( 38 | name: "Fernando Atila", 39 | source: "Upwork", 40 | text: 41 | "I really like this developer, he was always responsive for what i wanted. I recommend him for any project you wish to take him. Super professional."), 42 | Recommendation( 43 | name: "Boukhers Yasser", 44 | source: "Upwork", 45 | text: 46 | "Again Noor did a great job! really more than expected, we wanted to add more features to our Android application, and Noor did all the requirements quickly with good code quality. Highly recommend :)"), 47 | Recommendation( 48 | name: "Boukhers Yasser", 49 | source: "Upwork", 50 | text: 51 | "Noor did really a great job, he is methodic and has a large knowledge when it comes to Android development (Firebase, Parse Server, User experience), he did more than we expected, highly recommend and we will definitely hire him again."), 52 | Recommendation( 53 | name: "Boukhers Yasser", 54 | source: "Upwork", 55 | text: 56 | "Noor as always was amazing again, he did all the requirements with more than we expected, will definitely hire you again."), 57 | Recommendation( 58 | name: "Kolapo Obanewa", 59 | source: "Upwork", 60 | text: 61 | "I enjoyed working on this project. All expectations and requirements were laid out in advance and the freelancer responded to any of my requests for clarification. I enjoyed working with him. Good job! Thanks."), 62 | Recommendation( 63 | name: "Avinash Patel", 64 | source: "Upwork", 65 | text: 66 | "Noor is fantastic! Very knowledgeable and excellent to work with him. We will continue to use him when we need an Android Apps developer. Thanks"), 67 | Recommendation( 68 | name: "Fernando Atila ", 69 | source: "Upwork", 70 | text: "Noor is so professional i recommend you guys to take him :)"), 71 | ]; 72 | -------------------------------------------------------------------------------- /lib/screen/component/home/HomeBanner.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/constant/ColorsCons.dart'; 3 | import 'package:animated_text_kit/animated_text_kit.dart'; 4 | import 'package:portfolio_website/util/Responsive.dart'; 5 | 6 | class HomeBanner extends StatelessWidget { 7 | const HomeBanner({ 8 | Key key, 9 | }) : super(key: key); 10 | 11 | @override 12 | Widget build(BuildContext context) { 13 | return AspectRatio( 14 | aspectRatio: 3, 15 | child: Container( 16 | margin: EdgeInsets.all( 17 | !Responsive.isMobile(context)?Responsive.isTablet(context)?0:10:12 18 | ), 19 | child: Stack( 20 | fit: StackFit.expand, 21 | children: [ 22 | Image.asset( 23 | "assets/images/bg.jpeg", 24 | fit: BoxFit.cover, 25 | ), 26 | Container(color: darkColor.withOpacity(0.66)), 27 | Padding( 28 | padding: const EdgeInsets.symmetric(horizontal: defaultPadding), 29 | child: Column( 30 | crossAxisAlignment: CrossAxisAlignment.start, 31 | mainAxisAlignment: MainAxisAlignment.center, 32 | children: [ 33 | Text( 34 | "Discover my Amazing ${!Responsive.isMobile(context)?"\n":""}Art Space!", 35 | style: Theme.of(context).textTheme.headline3.copyWith( 36 | fontWeight: FontWeight.bold, 37 | color: Colors.white, 38 | fontSize: !Responsive.isMobile(context)?Responsive.isTablet(context)?25:40:14 39 | ), 40 | ), 41 | MyBuildAnimatedText(), 42 | SizedBox(height: defaultPadding), 43 | ElevatedButton( 44 | onPressed: () {}, 45 | style: TextButton.styleFrom( 46 | padding: EdgeInsets.symmetric( 47 | horizontal: defaultPadding * 2, 48 | vertical: defaultPadding), 49 | backgroundColor: primaryColor, 50 | ), 51 | child: Text( 52 | "EXPLORE NOW", 53 | style: TextStyle(color: darkColor), 54 | ), 55 | ), 56 | ], 57 | ), 58 | ) 59 | ], 60 | ), 61 | ), 62 | ); 63 | } 64 | } 65 | 66 | 67 | class MyBuildAnimatedText extends StatelessWidget { 68 | const MyBuildAnimatedText({ 69 | Key key, 70 | }) : super(key: key); 71 | 72 | @override 73 | Widget build(BuildContext context) { 74 | return DefaultTextStyle( 75 | // it applies same style to all the widgets under it 76 | style: Theme.of(context).textTheme.subtitle1, 77 | child: Row( 78 | children: [ 79 | SizedBox(width: defaultPadding / 2), 80 | Text("I build "), 81 | Expanded( 82 | child: AnimatedTextKit( 83 | animatedTexts: [ 84 | TyperAnimatedText( 85 | "responsive web and mobile app.", 86 | speed: Duration(milliseconds: 60), 87 | ), 88 | TyperAnimatedText( 89 | "complete e-Commerce app UI.", 90 | speed: Duration(milliseconds: 60), 91 | ), 92 | TyperAnimatedText( 93 | "Chat app with dark and light theme.", 94 | speed: Duration(milliseconds: 60), 95 | ), 96 | ], 97 | ), 98 | ), 99 | SizedBox(width: defaultPadding / 2), 100 | ], 101 | ), 102 | ); 103 | } 104 | } 105 | 106 | class FlutterCodedText extends StatelessWidget { 107 | const FlutterCodedText({ 108 | Key key, 109 | }) : super(key: key); 110 | 111 | @override 112 | Widget build(BuildContext context) { 113 | return Text.rich( 114 | TextSpan( 115 | text: "<", 116 | children: [ 117 | TextSpan( 118 | text: "flutter", 119 | style: TextStyle(color: primaryColor), 120 | ), 121 | TextSpan(text: ">"), 122 | ], 123 | ), 124 | ); 125 | } 126 | } -------------------------------------------------------------------------------- /assets/icons/dribble.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /lib/screen/component/side_menu/SideMenu.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/constant/ColorsCons.dart'; 3 | import 'package:portfolio_website/constant/string.dart'; 4 | import 'package:portfolio_website/screen/component/side_menu/Coding.dart'; 5 | import 'package:portfolio_website/screen/component/side_menu/Knowledges.dart'; 6 | import 'package:portfolio_website/screen/component/side_menu/info.dart'; 7 | import 'package:portfolio_website/util/AreaInfoText.dart'; 8 | import 'package:portfolio_website/screen/component/side_menu/Skills.dart'; 9 | import 'package:flutter_svg/svg.dart'; 10 | import 'dart:js' as js; 11 | 12 | 13 | 14 | class SideMenu extends StatelessWidget { 15 | const SideMenu({Key key}) : super(key: key); 16 | 17 | @override 18 | Widget build(BuildContext context) { 19 | return Container( 20 | width: 300, 21 | child: Drawer( 22 | child: Column( 23 | children: [ 24 | Info(), 25 | Expanded( 26 | child: SingleChildScrollView( 27 | padding: EdgeInsets.all(defaultPadding), 28 | child: Column( 29 | children: [ 30 | SizedBox(height: 20,), 31 | AreaInfoText( 32 | title: "Country", 33 | text: "Palestina", 34 | ), 35 | AreaInfoText( 36 | title: "City", 37 | text: "Gaza", 38 | ), 39 | AreaInfoText( 40 | title: "Age", 41 | text: "22", 42 | ), 43 | Skills(), 44 | SizedBox(height: defaultPadding), 45 | Coding(), 46 | Knowledges(), 47 | Divider(), 48 | SizedBox(height: defaultPadding / 2), 49 | TextButton( 50 | onPressed: () { 51 | js.context.callMethod('open', [LINK_CV]); 52 | }, 53 | child: FittedBox( 54 | child: Row( 55 | children: [ 56 | Text( 57 | "DOWNLOAD CV", 58 | style: TextStyle( 59 | color: Theme.of(context) 60 | .textTheme 61 | .bodyText1 62 | .color, 63 | ), 64 | ), 65 | SizedBox(width: defaultPadding / 2), 66 | SvgPicture.asset( 67 | "assets/icons/download.svg") 68 | ], 69 | ), 70 | ), 71 | ), 72 | Container( 73 | margin: EdgeInsets.only(top: defaultPadding), 74 | color: Color(0xFF24242E), 75 | child: Row( 76 | children: [ 77 | Spacer(), 78 | IconButton( 79 | onPressed: () { 80 | js.context 81 | .callMethod('open', [LINK_LINKED_IN]); 82 | }, 83 | icon: SvgPicture.asset( 84 | "assets/icons/linkedin.svg"), 85 | ), 86 | IconButton( 87 | onPressed: () { 88 | js.context 89 | .callMethod('open', [LINK_GITHUB]); 90 | }, 91 | icon: SvgPicture.asset( 92 | "assets/icons/github.svg"), 93 | ), 94 | IconButton( 95 | onPressed: () { 96 | js.context 97 | .callMethod('open', [LINK_TWITTER]); 98 | }, 99 | icon: SvgPicture.asset( 100 | "assets/icons/twitter.svg"), 101 | ), 102 | IconButton( 103 | onPressed: () { 104 | js.context 105 | .callMethod('open', [LINK_BEHANCE]); 106 | }, 107 | icon: SvgPicture.asset( 108 | "assets/icons/behance.svg"), 109 | ), 110 | IconButton( 111 | onPressed: () { 112 | js.context 113 | .callMethod('open', [LINK_YOUTUBE]); 114 | }, 115 | icon: SvgPicture.asset( 116 | "assets/icons/youtube.svg"), 117 | ), 118 | Spacer(), 119 | ], 120 | ), 121 | ), 122 | ], 123 | ), 124 | )) 125 | ], 126 | ), 127 | ), 128 | ); 129 | } 130 | } 131 | -------------------------------------------------------------------------------- /lib/screen/component/home/FileInfoCardGridView.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:portfolio_website/constant/ColorsCons.dart'; 3 | import 'package:portfolio_website/model/Project.dart'; 4 | import 'package:portfolio_website/model/Recommendation.dart'; 5 | import 'package:portfolio_website/util/Responsive.dart'; 6 | import 'dart:js' as js; 7 | 8 | class FileInfoCardGridView extends StatelessWidget { 9 | const FileInfoCardGridView({ 10 | Key key, 11 | this.crossAxisCount = 2, 12 | }) : super(key: key); 13 | 14 | final int crossAxisCount; 15 | 16 | @override 17 | Widget build(BuildContext context) { 18 | return Container( 19 | margin: EdgeInsets.all(20), 20 | child: Column( 21 | children: [ 22 | Container( 23 | alignment: Alignment.topLeft, 24 | child: Text( 25 | "My Project", 26 | style: Theme.of(context).textTheme.headline3.copyWith( 27 | fontWeight: FontWeight.bold, 28 | color: Colors.white, 29 | fontSize: !Responsive.isMobile(context) 30 | ? Responsive.isTablet(context) 31 | ? 25 32 | : 30 33 | : 14), 34 | ), 35 | ), 36 | SizedBox( 37 | height: 16, 38 | ), 39 | GridView.builder( 40 | physics: NeverScrollableScrollPhysics(), 41 | shrinkWrap: true, 42 | itemCount: demo_projects.length, 43 | gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( 44 | crossAxisCount: crossAxisCount, 45 | crossAxisSpacing: defaultPadding, 46 | mainAxisSpacing: defaultPadding, 47 | childAspectRatio: 2.3, 48 | ), 49 | itemBuilder: (context, index) => 50 | FileInfoCard(info: demo_projects[index]), 51 | ), 52 | ], 53 | ), 54 | ); 55 | } 56 | } 57 | 58 | class FileInfoCard extends StatelessWidget { 59 | const FileInfoCard({ 60 | Key key, 61 | this.info, 62 | }) : super(key: key); 63 | 64 | final Project info; 65 | 66 | @override 67 | Widget build(BuildContext context) { 68 | return Container( 69 | padding: EdgeInsets.all(defaultPadding), 70 | decoration: BoxDecoration( 71 | color: secondaryColor, 72 | borderRadius: BorderRadius.all(Radius.circular(10)), 73 | ), 74 | child: GestureDetector( 75 | onTap: () { 76 | js.context.callMethod('open', [info.link]); 77 | }, 78 | child: Container( 79 | margin: EdgeInsets.only(left: 16, right: 16), 80 | decoration: BoxDecoration( 81 | borderRadius: BorderRadius.circular(12.0), 82 | ), 83 | child: Column( 84 | children: [ 85 | Spacer(), 86 | Row( 87 | children: [ 88 | Icon( 89 | Icons.bookmark_border, 90 | color: Colors.grey, 91 | ), 92 | SizedBox( 93 | width: 16, 94 | ), 95 | Text( 96 | info.title, 97 | maxLines: 3, 98 | overflow: TextOverflow.ellipsis, 99 | style: TextStyle( 100 | color: Colors.blue, 101 | fontSize: 16, 102 | fontWeight: FontWeight.w800), 103 | ), 104 | Spacer(), 105 | Icon( 106 | Icons.wifi_tethering_outlined, 107 | color: Colors.grey, 108 | ) 109 | ], 110 | ), 111 | SizedBox( 112 | height: 12, 113 | ), 114 | Text( 115 | info.description, 116 | overflow: TextOverflow.ellipsis, 117 | maxLines: 3, 118 | style: TextStyle( 119 | color: Colors.grey, 120 | fontSize: 12, 121 | ), 122 | ), 123 | Container( 124 | alignment: Alignment.topRight, 125 | margin: EdgeInsets.only(top: 16, right: 8), 126 | child: Row( 127 | children: [ 128 | Container( 129 | alignment: Alignment.topRight, 130 | width: 10, 131 | height: 10, 132 | decoration: BoxDecoration( 133 | shape: BoxShape.circle, 134 | color: info.lang == KOTLIN 135 | ? Colors.purpleAccent 136 | : info.lang == SWIFT 137 | ? Colors.red 138 | : Colors.amber), 139 | ), 140 | SizedBox( 141 | width: 8, 142 | ), 143 | Text( 144 | info.lang, 145 | style: TextStyle( 146 | color: Colors.blue, 147 | fontSize: 14, 148 | ), 149 | ), 150 | SizedBox( 151 | width: 24, 152 | ), 153 | Spacer(), 154 | ], 155 | ), 156 | ), 157 | Spacer(), 158 | ], 159 | ), 160 | ), 161 | ), 162 | ); 163 | } 164 | } 165 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | animated_text_kit: 5 | dependency: "direct dev" 6 | description: 7 | name: animated_text_kit 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "4.2.1" 11 | async: 12 | dependency: transitive 13 | description: 14 | name: async 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.5.0" 18 | boolean_selector: 19 | dependency: transitive 20 | description: 21 | name: boolean_selector 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.1.0" 25 | characters: 26 | dependency: transitive 27 | description: 28 | name: characters 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.1.0" 32 | charcode: 33 | dependency: transitive 34 | description: 35 | name: charcode 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.2.0" 39 | clock: 40 | dependency: transitive 41 | description: 42 | name: clock 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.1.0" 46 | collection: 47 | dependency: transitive 48 | description: 49 | name: collection 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.15.0" 53 | crypto: 54 | dependency: transitive 55 | description: 56 | name: crypto 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "3.0.1" 60 | cupertino_icons: 61 | dependency: "direct main" 62 | description: 63 | name: cupertino_icons 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "1.0.3" 67 | fake_async: 68 | dependency: transitive 69 | description: 70 | name: fake_async 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "1.2.0" 74 | ffi: 75 | dependency: transitive 76 | description: 77 | name: ffi 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "1.1.2" 81 | file: 82 | dependency: transitive 83 | description: 84 | name: file 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "6.1.2" 88 | flutter: 89 | dependency: "direct main" 90 | description: flutter 91 | source: sdk 92 | version: "0.0.0" 93 | flutter_staggered_grid_view: 94 | dependency: "direct dev" 95 | description: 96 | name: flutter_staggered_grid_view 97 | url: "https://pub.dartlang.org" 98 | source: hosted 99 | version: "0.3.4" 100 | flutter_svg: 101 | dependency: "direct dev" 102 | description: 103 | name: flutter_svg 104 | url: "https://pub.dartlang.org" 105 | source: hosted 106 | version: "0.22.0" 107 | flutter_test: 108 | dependency: "direct dev" 109 | description: flutter 110 | source: sdk 111 | version: "0.0.0" 112 | google_fonts: 113 | dependency: "direct dev" 114 | description: 115 | name: google_fonts 116 | url: "https://pub.dartlang.org" 117 | source: hosted 118 | version: "2.1.0" 119 | http: 120 | dependency: transitive 121 | description: 122 | name: http 123 | url: "https://pub.dartlang.org" 124 | source: hosted 125 | version: "0.13.3" 126 | http_parser: 127 | dependency: transitive 128 | description: 129 | name: http_parser 130 | url: "https://pub.dartlang.org" 131 | source: hosted 132 | version: "4.0.0" 133 | matcher: 134 | dependency: transitive 135 | description: 136 | name: matcher 137 | url: "https://pub.dartlang.org" 138 | source: hosted 139 | version: "0.12.10" 140 | meta: 141 | dependency: transitive 142 | description: 143 | name: meta 144 | url: "https://pub.dartlang.org" 145 | source: hosted 146 | version: "1.3.0" 147 | nested: 148 | dependency: transitive 149 | description: 150 | name: nested 151 | url: "https://pub.dartlang.org" 152 | source: hosted 153 | version: "1.0.0" 154 | path: 155 | dependency: transitive 156 | description: 157 | name: path 158 | url: "https://pub.dartlang.org" 159 | source: hosted 160 | version: "1.8.0" 161 | path_drawing: 162 | dependency: transitive 163 | description: 164 | name: path_drawing 165 | url: "https://pub.dartlang.org" 166 | source: hosted 167 | version: "0.5.1" 168 | path_parsing: 169 | dependency: transitive 170 | description: 171 | name: path_parsing 172 | url: "https://pub.dartlang.org" 173 | source: hosted 174 | version: "0.2.1" 175 | path_provider: 176 | dependency: transitive 177 | description: 178 | name: path_provider 179 | url: "https://pub.dartlang.org" 180 | source: hosted 181 | version: "2.0.2" 182 | path_provider_linux: 183 | dependency: transitive 184 | description: 185 | name: path_provider_linux 186 | url: "https://pub.dartlang.org" 187 | source: hosted 188 | version: "2.0.0" 189 | path_provider_macos: 190 | dependency: transitive 191 | description: 192 | name: path_provider_macos 193 | url: "https://pub.dartlang.org" 194 | source: hosted 195 | version: "2.0.0" 196 | path_provider_platform_interface: 197 | dependency: transitive 198 | description: 199 | name: path_provider_platform_interface 200 | url: "https://pub.dartlang.org" 201 | source: hosted 202 | version: "2.0.1" 203 | path_provider_windows: 204 | dependency: transitive 205 | description: 206 | name: path_provider_windows 207 | url: "https://pub.dartlang.org" 208 | source: hosted 209 | version: "2.0.1" 210 | pedantic: 211 | dependency: transitive 212 | description: 213 | name: pedantic 214 | url: "https://pub.dartlang.org" 215 | source: hosted 216 | version: "1.11.1" 217 | petitparser: 218 | dependency: transitive 219 | description: 220 | name: petitparser 221 | url: "https://pub.dartlang.org" 222 | source: hosted 223 | version: "4.1.0" 224 | platform: 225 | dependency: transitive 226 | description: 227 | name: platform 228 | url: "https://pub.dartlang.org" 229 | source: hosted 230 | version: "3.0.0" 231 | plugin_platform_interface: 232 | dependency: transitive 233 | description: 234 | name: plugin_platform_interface 235 | url: "https://pub.dartlang.org" 236 | source: hosted 237 | version: "2.0.1" 238 | process: 239 | dependency: transitive 240 | description: 241 | name: process 242 | url: "https://pub.dartlang.org" 243 | source: hosted 244 | version: "4.2.1" 245 | provider: 246 | dependency: "direct dev" 247 | description: 248 | name: provider 249 | url: "https://pub.dartlang.org" 250 | source: hosted 251 | version: "5.0.0" 252 | sky_engine: 253 | dependency: transitive 254 | description: flutter 255 | source: sdk 256 | version: "0.0.99" 257 | source_span: 258 | dependency: transitive 259 | description: 260 | name: source_span 261 | url: "https://pub.dartlang.org" 262 | source: hosted 263 | version: "1.8.0" 264 | stack_trace: 265 | dependency: transitive 266 | description: 267 | name: stack_trace 268 | url: "https://pub.dartlang.org" 269 | source: hosted 270 | version: "1.10.0" 271 | stream_channel: 272 | dependency: transitive 273 | description: 274 | name: stream_channel 275 | url: "https://pub.dartlang.org" 276 | source: hosted 277 | version: "2.1.0" 278 | string_scanner: 279 | dependency: transitive 280 | description: 281 | name: string_scanner 282 | url: "https://pub.dartlang.org" 283 | source: hosted 284 | version: "1.1.0" 285 | term_glyph: 286 | dependency: transitive 287 | description: 288 | name: term_glyph 289 | url: "https://pub.dartlang.org" 290 | source: hosted 291 | version: "1.2.0" 292 | test_api: 293 | dependency: transitive 294 | description: 295 | name: test_api 296 | url: "https://pub.dartlang.org" 297 | source: hosted 298 | version: "0.2.19" 299 | typed_data: 300 | dependency: transitive 301 | description: 302 | name: typed_data 303 | url: "https://pub.dartlang.org" 304 | source: hosted 305 | version: "1.3.0" 306 | vector_math: 307 | dependency: transitive 308 | description: 309 | name: vector_math 310 | url: "https://pub.dartlang.org" 311 | source: hosted 312 | version: "2.1.0" 313 | win32: 314 | dependency: transitive 315 | description: 316 | name: win32 317 | url: "https://pub.dartlang.org" 318 | source: hosted 319 | version: "2.0.5" 320 | xdg_directories: 321 | dependency: transitive 322 | description: 323 | name: xdg_directories 324 | url: "https://pub.dartlang.org" 325 | source: hosted 326 | version: "0.2.0" 327 | xml: 328 | dependency: transitive 329 | description: 330 | name: xml 331 | url: "https://pub.dartlang.org" 332 | source: hosted 333 | version: "5.1.2" 334 | sdks: 335 | dart: ">=2.12.0 <3.0.0" 336 | flutter: ">=1.24.0-7.0" 337 | -------------------------------------------------------------------------------- /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 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 13 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 14 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 15 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXCopyFilesBuildPhase section */ 19 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 20 | isa = PBXCopyFilesBuildPhase; 21 | buildActionMask = 2147483647; 22 | dstPath = ""; 23 | dstSubfolderSpec = 10; 24 | files = ( 25 | ); 26 | name = "Embed Frameworks"; 27 | runOnlyForDeploymentPostprocessing = 0; 28 | }; 29 | /* End PBXCopyFilesBuildPhase section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 33 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 34 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 35 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 36 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 38 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 39 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 40 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 42 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 43 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 44 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 45 | /* End PBXFileReference section */ 46 | 47 | /* Begin PBXFrameworksBuildPhase section */ 48 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 49 | isa = PBXFrameworksBuildPhase; 50 | buildActionMask = 2147483647; 51 | files = ( 52 | ); 53 | runOnlyForDeploymentPostprocessing = 0; 54 | }; 55 | /* End PBXFrameworksBuildPhase section */ 56 | 57 | /* Begin PBXGroup section */ 58 | 9740EEB11CF90186004384FC /* Flutter */ = { 59 | isa = PBXGroup; 60 | children = ( 61 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 62 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 63 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 64 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 65 | ); 66 | name = Flutter; 67 | sourceTree = ""; 68 | }; 69 | 97C146E51CF9000F007C117D = { 70 | isa = PBXGroup; 71 | children = ( 72 | 9740EEB11CF90186004384FC /* Flutter */, 73 | 97C146F01CF9000F007C117D /* Runner */, 74 | 97C146EF1CF9000F007C117D /* Products */, 75 | ); 76 | sourceTree = ""; 77 | }; 78 | 97C146EF1CF9000F007C117D /* Products */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 97C146EE1CF9000F007C117D /* Runner.app */, 82 | ); 83 | name = Products; 84 | sourceTree = ""; 85 | }; 86 | 97C146F01CF9000F007C117D /* Runner */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 90 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 91 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 92 | 97C147021CF9000F007C117D /* Info.plist */, 93 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 94 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 95 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 96 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 97 | ); 98 | path = Runner; 99 | sourceTree = ""; 100 | }; 101 | /* End PBXGroup section */ 102 | 103 | /* Begin PBXNativeTarget section */ 104 | 97C146ED1CF9000F007C117D /* Runner */ = { 105 | isa = PBXNativeTarget; 106 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 107 | buildPhases = ( 108 | 9740EEB61CF901F6004384FC /* Run Script */, 109 | 97C146EA1CF9000F007C117D /* Sources */, 110 | 97C146EB1CF9000F007C117D /* Frameworks */, 111 | 97C146EC1CF9000F007C117D /* Resources */, 112 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 113 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 114 | ); 115 | buildRules = ( 116 | ); 117 | dependencies = ( 118 | ); 119 | name = Runner; 120 | productName = Runner; 121 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 122 | productType = "com.apple.product-type.application"; 123 | }; 124 | /* End PBXNativeTarget section */ 125 | 126 | /* Begin PBXProject section */ 127 | 97C146E61CF9000F007C117D /* Project object */ = { 128 | isa = PBXProject; 129 | attributes = { 130 | LastUpgradeCheck = 1020; 131 | ORGANIZATIONNAME = ""; 132 | TargetAttributes = { 133 | 97C146ED1CF9000F007C117D = { 134 | CreatedOnToolsVersion = 7.3.1; 135 | LastSwiftMigration = 1100; 136 | }; 137 | }; 138 | }; 139 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 140 | compatibilityVersion = "Xcode 9.3"; 141 | developmentRegion = en; 142 | hasScannedForEncodings = 0; 143 | knownRegions = ( 144 | en, 145 | Base, 146 | ); 147 | mainGroup = 97C146E51CF9000F007C117D; 148 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 149 | projectDirPath = ""; 150 | projectRoot = ""; 151 | targets = ( 152 | 97C146ED1CF9000F007C117D /* Runner */, 153 | ); 154 | }; 155 | /* End PBXProject section */ 156 | 157 | /* Begin PBXResourcesBuildPhase section */ 158 | 97C146EC1CF9000F007C117D /* Resources */ = { 159 | isa = PBXResourcesBuildPhase; 160 | buildActionMask = 2147483647; 161 | files = ( 162 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 163 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 164 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 165 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 166 | ); 167 | runOnlyForDeploymentPostprocessing = 0; 168 | }; 169 | /* End PBXResourcesBuildPhase section */ 170 | 171 | /* Begin PBXShellScriptBuildPhase section */ 172 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 173 | isa = PBXShellScriptBuildPhase; 174 | buildActionMask = 2147483647; 175 | files = ( 176 | ); 177 | inputPaths = ( 178 | ); 179 | name = "Thin Binary"; 180 | outputPaths = ( 181 | ); 182 | runOnlyForDeploymentPostprocessing = 0; 183 | shellPath = /bin/sh; 184 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 185 | }; 186 | 9740EEB61CF901F6004384FC /* Run Script */ = { 187 | isa = PBXShellScriptBuildPhase; 188 | buildActionMask = 2147483647; 189 | files = ( 190 | ); 191 | inputPaths = ( 192 | ); 193 | name = "Run Script"; 194 | outputPaths = ( 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | shellPath = /bin/sh; 198 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 199 | }; 200 | /* End PBXShellScriptBuildPhase section */ 201 | 202 | /* Begin PBXSourcesBuildPhase section */ 203 | 97C146EA1CF9000F007C117D /* Sources */ = { 204 | isa = PBXSourcesBuildPhase; 205 | buildActionMask = 2147483647; 206 | files = ( 207 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 208 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 209 | ); 210 | runOnlyForDeploymentPostprocessing = 0; 211 | }; 212 | /* End PBXSourcesBuildPhase section */ 213 | 214 | /* Begin PBXVariantGroup section */ 215 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 216 | isa = PBXVariantGroup; 217 | children = ( 218 | 97C146FB1CF9000F007C117D /* Base */, 219 | ); 220 | name = Main.storyboard; 221 | sourceTree = ""; 222 | }; 223 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 224 | isa = PBXVariantGroup; 225 | children = ( 226 | 97C147001CF9000F007C117D /* Base */, 227 | ); 228 | name = LaunchScreen.storyboard; 229 | sourceTree = ""; 230 | }; 231 | /* End PBXVariantGroup section */ 232 | 233 | /* Begin XCBuildConfiguration section */ 234 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 235 | isa = XCBuildConfiguration; 236 | buildSettings = { 237 | ALWAYS_SEARCH_USER_PATHS = NO; 238 | CLANG_ANALYZER_NONNULL = YES; 239 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 240 | CLANG_CXX_LIBRARY = "libc++"; 241 | CLANG_ENABLE_MODULES = YES; 242 | CLANG_ENABLE_OBJC_ARC = YES; 243 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 244 | CLANG_WARN_BOOL_CONVERSION = YES; 245 | CLANG_WARN_COMMA = YES; 246 | CLANG_WARN_CONSTANT_CONVERSION = YES; 247 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 248 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 249 | CLANG_WARN_EMPTY_BODY = YES; 250 | CLANG_WARN_ENUM_CONVERSION = YES; 251 | CLANG_WARN_INFINITE_RECURSION = YES; 252 | CLANG_WARN_INT_CONVERSION = YES; 253 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 254 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 255 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 256 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 257 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 258 | CLANG_WARN_STRICT_PROTOTYPES = YES; 259 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 260 | CLANG_WARN_UNREACHABLE_CODE = YES; 261 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 262 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 263 | COPY_PHASE_STRIP = NO; 264 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 265 | ENABLE_NS_ASSERTIONS = NO; 266 | ENABLE_STRICT_OBJC_MSGSEND = YES; 267 | GCC_C_LANGUAGE_STANDARD = gnu99; 268 | GCC_NO_COMMON_BLOCKS = YES; 269 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 270 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 271 | GCC_WARN_UNDECLARED_SELECTOR = YES; 272 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 273 | GCC_WARN_UNUSED_FUNCTION = YES; 274 | GCC_WARN_UNUSED_VARIABLE = YES; 275 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 276 | MTL_ENABLE_DEBUG_INFO = NO; 277 | SDKROOT = iphoneos; 278 | SUPPORTED_PLATFORMS = iphoneos; 279 | TARGETED_DEVICE_FAMILY = "1,2"; 280 | VALIDATE_PRODUCT = YES; 281 | }; 282 | name = Profile; 283 | }; 284 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 285 | isa = XCBuildConfiguration; 286 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 287 | buildSettings = { 288 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 289 | CLANG_ENABLE_MODULES = YES; 290 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 291 | ENABLE_BITCODE = NO; 292 | INFOPLIST_FILE = Runner/Info.plist; 293 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 294 | PRODUCT_BUNDLE_IDENTIFIER = com.noor.yasser.ps.portfolioWebsite; 295 | PRODUCT_NAME = "$(TARGET_NAME)"; 296 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 297 | SWIFT_VERSION = 5.0; 298 | VERSIONING_SYSTEM = "apple-generic"; 299 | }; 300 | name = Profile; 301 | }; 302 | 97C147031CF9000F007C117D /* Debug */ = { 303 | isa = XCBuildConfiguration; 304 | buildSettings = { 305 | ALWAYS_SEARCH_USER_PATHS = NO; 306 | CLANG_ANALYZER_NONNULL = YES; 307 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 308 | CLANG_CXX_LIBRARY = "libc++"; 309 | CLANG_ENABLE_MODULES = YES; 310 | CLANG_ENABLE_OBJC_ARC = YES; 311 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 312 | CLANG_WARN_BOOL_CONVERSION = YES; 313 | CLANG_WARN_COMMA = YES; 314 | CLANG_WARN_CONSTANT_CONVERSION = YES; 315 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 316 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 317 | CLANG_WARN_EMPTY_BODY = YES; 318 | CLANG_WARN_ENUM_CONVERSION = YES; 319 | CLANG_WARN_INFINITE_RECURSION = YES; 320 | CLANG_WARN_INT_CONVERSION = YES; 321 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 322 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 323 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 324 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 325 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 326 | CLANG_WARN_STRICT_PROTOTYPES = YES; 327 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 328 | CLANG_WARN_UNREACHABLE_CODE = YES; 329 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 330 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 331 | COPY_PHASE_STRIP = NO; 332 | DEBUG_INFORMATION_FORMAT = dwarf; 333 | ENABLE_STRICT_OBJC_MSGSEND = YES; 334 | ENABLE_TESTABILITY = YES; 335 | GCC_C_LANGUAGE_STANDARD = gnu99; 336 | GCC_DYNAMIC_NO_PIC = NO; 337 | GCC_NO_COMMON_BLOCKS = YES; 338 | GCC_OPTIMIZATION_LEVEL = 0; 339 | GCC_PREPROCESSOR_DEFINITIONS = ( 340 | "DEBUG=1", 341 | "$(inherited)", 342 | ); 343 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 344 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 345 | GCC_WARN_UNDECLARED_SELECTOR = YES; 346 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 347 | GCC_WARN_UNUSED_FUNCTION = YES; 348 | GCC_WARN_UNUSED_VARIABLE = YES; 349 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 350 | MTL_ENABLE_DEBUG_INFO = YES; 351 | ONLY_ACTIVE_ARCH = YES; 352 | SDKROOT = iphoneos; 353 | TARGETED_DEVICE_FAMILY = "1,2"; 354 | }; 355 | name = Debug; 356 | }; 357 | 97C147041CF9000F007C117D /* Release */ = { 358 | isa = XCBuildConfiguration; 359 | buildSettings = { 360 | ALWAYS_SEARCH_USER_PATHS = NO; 361 | CLANG_ANALYZER_NONNULL = YES; 362 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 363 | CLANG_CXX_LIBRARY = "libc++"; 364 | CLANG_ENABLE_MODULES = YES; 365 | CLANG_ENABLE_OBJC_ARC = YES; 366 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 367 | CLANG_WARN_BOOL_CONVERSION = YES; 368 | CLANG_WARN_COMMA = YES; 369 | CLANG_WARN_CONSTANT_CONVERSION = YES; 370 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 371 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 372 | CLANG_WARN_EMPTY_BODY = YES; 373 | CLANG_WARN_ENUM_CONVERSION = YES; 374 | CLANG_WARN_INFINITE_RECURSION = YES; 375 | CLANG_WARN_INT_CONVERSION = YES; 376 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 377 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 378 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 379 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 380 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 381 | CLANG_WARN_STRICT_PROTOTYPES = YES; 382 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 383 | CLANG_WARN_UNREACHABLE_CODE = YES; 384 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 385 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 386 | COPY_PHASE_STRIP = NO; 387 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 388 | ENABLE_NS_ASSERTIONS = NO; 389 | ENABLE_STRICT_OBJC_MSGSEND = YES; 390 | GCC_C_LANGUAGE_STANDARD = gnu99; 391 | GCC_NO_COMMON_BLOCKS = YES; 392 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 393 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 394 | GCC_WARN_UNDECLARED_SELECTOR = YES; 395 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 396 | GCC_WARN_UNUSED_FUNCTION = YES; 397 | GCC_WARN_UNUSED_VARIABLE = YES; 398 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 399 | MTL_ENABLE_DEBUG_INFO = NO; 400 | SDKROOT = iphoneos; 401 | SUPPORTED_PLATFORMS = iphoneos; 402 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 403 | TARGETED_DEVICE_FAMILY = "1,2"; 404 | VALIDATE_PRODUCT = YES; 405 | }; 406 | name = Release; 407 | }; 408 | 97C147061CF9000F007C117D /* Debug */ = { 409 | isa = XCBuildConfiguration; 410 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 411 | buildSettings = { 412 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 413 | CLANG_ENABLE_MODULES = YES; 414 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 415 | ENABLE_BITCODE = NO; 416 | INFOPLIST_FILE = Runner/Info.plist; 417 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 418 | PRODUCT_BUNDLE_IDENTIFIER = com.noor.yasser.ps.portfolioWebsite; 419 | PRODUCT_NAME = "$(TARGET_NAME)"; 420 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 421 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 422 | SWIFT_VERSION = 5.0; 423 | VERSIONING_SYSTEM = "apple-generic"; 424 | }; 425 | name = Debug; 426 | }; 427 | 97C147071CF9000F007C117D /* Release */ = { 428 | isa = XCBuildConfiguration; 429 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 430 | buildSettings = { 431 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 432 | CLANG_ENABLE_MODULES = YES; 433 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 434 | ENABLE_BITCODE = NO; 435 | INFOPLIST_FILE = Runner/Info.plist; 436 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 437 | PRODUCT_BUNDLE_IDENTIFIER = com.noor.yasser.ps.portfolioWebsite; 438 | PRODUCT_NAME = "$(TARGET_NAME)"; 439 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 440 | SWIFT_VERSION = 5.0; 441 | VERSIONING_SYSTEM = "apple-generic"; 442 | }; 443 | name = Release; 444 | }; 445 | /* End XCBuildConfiguration section */ 446 | 447 | /* Begin XCConfigurationList section */ 448 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 449 | isa = XCConfigurationList; 450 | buildConfigurations = ( 451 | 97C147031CF9000F007C117D /* Debug */, 452 | 97C147041CF9000F007C117D /* Release */, 453 | 249021D3217E4FDB00AE95B9 /* Profile */, 454 | ); 455 | defaultConfigurationIsVisible = 0; 456 | defaultConfigurationName = Release; 457 | }; 458 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 459 | isa = XCConfigurationList; 460 | buildConfigurations = ( 461 | 97C147061CF9000F007C117D /* Debug */, 462 | 97C147071CF9000F007C117D /* Release */, 463 | 249021D4217E4FDB00AE95B9 /* Profile */, 464 | ); 465 | defaultConfigurationIsVisible = 0; 466 | defaultConfigurationName = Release; 467 | }; 468 | /* End XCConfigurationList section */ 469 | }; 470 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 471 | } 472 | --------------------------------------------------------------------------------