├── .DS_Store ├── .gitignore ├── README.md ├── images ├── .DS_Store ├── FlutterFinalGif.mp4 ├── apiData.png ├── dashboard.png ├── form.png ├── gridView.png ├── heroAnimationGif.gif └── login.png └── website ├── .gitignore ├── .metadata ├── README.md ├── android ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── website │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── main.m ├── lib ├── main.dart ├── models │ ├── github_model.dart │ └── user.dart ├── screens │ ├── dashboard │ │ └── dashboard.dart │ ├── forms │ │ ├── form.dart │ │ └── gender_widget.dart │ ├── hero │ │ ├── hero_object.dart │ │ └── hero_screen.dart │ ├── home │ │ └── home_screen.dart │ └── login │ │ └── login.dart ├── services │ └── api_service.dart ├── utils │ ├── color_constants.dart │ └── raw_data.dart └── widgets │ ├── table_card.dart │ └── ticket_cards.dart ├── pubspec.yaml ├── test └── widget_test.dart └── web ├── assets ├── FontManifest.json ├── fonts │ ├── AbrilFatface-Regular.ttf │ ├── Arvo │ │ ├── Arvo-Bold.ttf │ │ ├── Arvo-BoldItalic.ttf │ │ ├── Arvo-Italic.ttf │ │ ├── Arvo-Regular.ttf │ │ └── OFL.txt │ ├── GalleryIcons.ttf │ ├── GoogleSans-Regular.ttf │ ├── HelveticaNeue │ │ ├── Helvetica Neu Bold.ttf │ │ ├── HelveticaNeue BlackCond.ttf │ │ ├── HelveticaNeue Light.ttf │ │ ├── HelveticaNeue Medium.ttf │ │ ├── HelveticaNeue Thin.ttf │ │ ├── HelveticaNeue-Bold.ttf │ │ ├── HelveticaNeue-Regular.ttf │ │ ├── HelveticaNeueHv.ttf │ │ ├── HelveticaNeueIt.ttf │ │ ├── HelveticaNeueLt.ttf │ │ ├── HelveticaNeueMed.ttf │ │ ├── freefontsdownload.txt │ │ ├── helveticaneue.png │ │ └── www.freefontsdownload.net.url │ ├── LibreFranklin-Regular.ttf │ ├── Merriweather-Regular.ttf │ └── Raleway-Regular.ttf └── ironman.png ├── index.html └── main.dart /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://www.dartlang.org/guides/libraries/private-files 2 | 3 | # Files and directories created by pub 4 | .dart_tool/ 5 | .packages 6 | .pub/ 7 | build/ 8 | # If you're building an application, you may want to check-in your pubspec.lock 9 | pubspec.lock 10 | 11 | # Directory created by dartdoc 12 | # If you don't generate documentation locally you can remove this line. 13 | doc/api/ 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Admin Material for Flutter Web. 2 | 3 | 4 | # [Demo](https://flutterwebadmindashboard-ozrgbodeiy.now.sh/#/) 5 | 6 | 7 | This project was generated with [Flutter Web](https://github.com/flutter/flutter_web). 8 | 9 | ### Introduction 10 | 11 | This project contains most of the common widgets which are used by Flutter. 12 | 13 | - Row/Column 14 | - Tables 15 | - Cards 16 | - Custom Scroll View 17 | 18 | 19 | 20 | 21 | 22 | - Forms 23 | 24 | 25 | - Hero Animations 26 | - Linear Gradient 27 | 28 | 29 | 30 | - Api calls using http (Top 10 trending github repositories) in a tabular view. 31 | 32 | 33 | 34 | ### How to start 35 | 36 | 37 | 38 | Prerequisites: 39 | 40 | 1. Your Flutter version needs to be `1.5.4` and higher 41 | 2. Version 3.0 of the Flutter plugin 42 | 43 | In order to run this project: 44 | 45 | 1. Clone the flutter web repository. [https://github.com/flutter/flutter_web](https://github.com/flutter/flutter_web) 46 | 2. Add $HOME/.pub-cache/bin as path. 47 | 3. Now activate webdev for that run this command 48 | ```bash 49 | $ flutter packages pub global activate webdev 50 | ``` 51 | 4. Clone this repository. 52 | 5. Run 53 | ```bash 54 | $ pub get 55 | $ webdev serve --auto restart 56 | ``` 57 | 58 | ### Further help 59 | 60 | To get more help on the Flutter Web, check out the [Flutter Web](https://github.com/flutter/flutter_web). 61 | -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/images/.DS_Store -------------------------------------------------------------------------------- /images/FlutterFinalGif.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/images/FlutterFinalGif.mp4 -------------------------------------------------------------------------------- /images/apiData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/images/apiData.png -------------------------------------------------------------------------------- /images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/images/dashboard.png -------------------------------------------------------------------------------- /images/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/images/form.png -------------------------------------------------------------------------------- /images/gridView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/images/gridView.png -------------------------------------------------------------------------------- /images/heroAnimationGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/images/heroAnimationGif.gif -------------------------------------------------------------------------------- /images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/images/login.png -------------------------------------------------------------------------------- /website/.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 | # Visual Studio Code related 19 | .vscode/ 20 | 21 | # Flutter/Dart/Pub related 22 | **/doc/api/ 23 | .dart_tool/ 24 | .flutter-plugins 25 | .packages 26 | .pub-cache/ 27 | .pub/ 28 | /build/ 29 | 30 | # Android related 31 | **/android/**/gradle-wrapper.jar 32 | **/android/.gradle 33 | **/android/captures/ 34 | **/android/gradlew 35 | **/android/gradlew.bat 36 | **/android/local.properties 37 | **/android/**/GeneratedPluginRegistrant.java 38 | 39 | # iOS/XCode related 40 | **/ios/**/*.mode1v3 41 | **/ios/**/*.mode2v3 42 | **/ios/**/*.moved-aside 43 | **/ios/**/*.pbxuser 44 | **/ios/**/*.perspectivev3 45 | **/ios/**/*sync/ 46 | **/ios/**/.sconsign.dblite 47 | **/ios/**/.tags* 48 | **/ios/**/.vagrant/ 49 | **/ios/**/DerivedData/ 50 | **/ios/**/Icon? 51 | **/ios/**/Pods/ 52 | **/ios/**/.symlinks/ 53 | **/ios/**/profile 54 | **/ios/**/xcuserdata 55 | **/ios/.generated/ 56 | **/ios/Flutter/App.framework 57 | **/ios/Flutter/Flutter.framework 58 | **/ios/Flutter/Generated.xcconfig 59 | **/ios/Flutter/app.flx 60 | **/ios/Flutter/app.zip 61 | **/ios/Flutter/flutter_assets/ 62 | **/ios/ServiceDefinitions.json 63 | **/ios/Runner/GeneratedPluginRegistrant.* 64 | 65 | # Exceptions to above rules. 66 | !**/ios/**/default.mode1v3 67 | !**/ios/**/default.mode2v3 68 | !**/ios/**/default.pbxuser 69 | !**/ios/**/default.perspectivev3 70 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages 71 | -------------------------------------------------------------------------------- /website/.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: 7a4c33425ddd78c54aba07d86f3f9a4a0051769b 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- 1 | # website 2 | 3 | A new Flutter project. 4 | 5 | ## Getting Started 6 | 7 | This project is a starting point for a Flutter application. 8 | 9 | A few resources to get you started if this is your first Flutter project: 10 | 11 | - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) 12 | - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) 13 | 14 | For help getting started with Flutter, view our 15 | [online documentation](https://flutter.dev/docs), which offers tutorials, 16 | samples, guidance on mobile development, and a full API reference. 17 | -------------------------------------------------------------------------------- /website/android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 26 | 27 | android { 28 | compileSdkVersion 28 29 | 30 | lintOptions { 31 | disable 'InvalidPackage' 32 | } 33 | 34 | defaultConfig { 35 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 36 | applicationId "com.example.website" 37 | minSdkVersion 16 38 | targetSdkVersion 28 39 | versionCode flutterVersionCode.toInteger() 40 | versionName flutterVersionName 41 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 42 | } 43 | 44 | buildTypes { 45 | release { 46 | // TODO: Add your own signing config for the release build. 47 | // Signing with the debug keys for now, so `flutter run --release` works. 48 | signingConfig signingConfigs.debug 49 | } 50 | } 51 | } 52 | 53 | flutter { 54 | source '../..' 55 | } 56 | 57 | dependencies { 58 | testImplementation 'junit:junit:4.12' 59 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 60 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 61 | } 62 | -------------------------------------------------------------------------------- /website/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /website/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 9 | 13 | 20 | 24 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /website/android/app/src/main/java/com/example/website/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.website; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /website/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /website/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /website/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /website/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /website/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /website/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /website/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /website/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /website/android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.2.1' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /website/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /website/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-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /website/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /website/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 | -------------------------------------------------------------------------------- /website/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /website/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /website/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; }; 13 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 14 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; }; 15 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 16 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 17 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 18 | 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 19 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 20 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 21 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXCopyFilesBuildPhase section */ 25 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 26 | isa = PBXCopyFilesBuildPhase; 27 | buildActionMask = 2147483647; 28 | dstPath = ""; 29 | dstSubfolderSpec = 10; 30 | files = ( 31 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, 32 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, 33 | ); 34 | name = "Embed Frameworks"; 35 | runOnlyForDeploymentPostprocessing = 0; 36 | }; 37 | /* End PBXCopyFilesBuildPhase section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 41 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 42 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 43 | 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; }; 44 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 45 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 46 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 47 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 48 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 49 | 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; }; 50 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 52 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 53 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 54 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 55 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 56 | /* End PBXFileReference section */ 57 | 58 | /* Begin PBXFrameworksBuildPhase section */ 59 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 60 | isa = PBXFrameworksBuildPhase; 61 | buildActionMask = 2147483647; 62 | files = ( 63 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, 64 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, 65 | ); 66 | runOnlyForDeploymentPostprocessing = 0; 67 | }; 68 | /* End PBXFrameworksBuildPhase section */ 69 | 70 | /* Begin PBXGroup section */ 71 | 9740EEB11CF90186004384FC /* Flutter */ = { 72 | isa = PBXGroup; 73 | children = ( 74 | 3B80C3931E831B6300D905FE /* App.framework */, 75 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 76 | 9740EEBA1CF902C7004384FC /* Flutter.framework */, 77 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 78 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 79 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 80 | ); 81 | name = Flutter; 82 | sourceTree = ""; 83 | }; 84 | 97C146E51CF9000F007C117D = { 85 | isa = PBXGroup; 86 | children = ( 87 | 9740EEB11CF90186004384FC /* Flutter */, 88 | 97C146F01CF9000F007C117D /* Runner */, 89 | 97C146EF1CF9000F007C117D /* Products */, 90 | CF3B75C9A7D2FA2A4C99F110 /* Frameworks */, 91 | ); 92 | sourceTree = ""; 93 | }; 94 | 97C146EF1CF9000F007C117D /* Products */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | 97C146EE1CF9000F007C117D /* Runner.app */, 98 | ); 99 | name = Products; 100 | sourceTree = ""; 101 | }; 102 | 97C146F01CF9000F007C117D /* Runner */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, 106 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, 107 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 108 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 109 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 110 | 97C147021CF9000F007C117D /* Info.plist */, 111 | 97C146F11CF9000F007C117D /* Supporting Files */, 112 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 113 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 114 | ); 115 | path = Runner; 116 | sourceTree = ""; 117 | }; 118 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 97C146F21CF9000F007C117D /* main.m */, 122 | ); 123 | name = "Supporting Files"; 124 | sourceTree = ""; 125 | }; 126 | /* End PBXGroup section */ 127 | 128 | /* Begin PBXNativeTarget section */ 129 | 97C146ED1CF9000F007C117D /* Runner */ = { 130 | isa = PBXNativeTarget; 131 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 132 | buildPhases = ( 133 | 9740EEB61CF901F6004384FC /* Run Script */, 134 | 97C146EA1CF9000F007C117D /* Sources */, 135 | 97C146EB1CF9000F007C117D /* Frameworks */, 136 | 97C146EC1CF9000F007C117D /* Resources */, 137 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 138 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 139 | ); 140 | buildRules = ( 141 | ); 142 | dependencies = ( 143 | ); 144 | name = Runner; 145 | productName = Runner; 146 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 147 | productType = "com.apple.product-type.application"; 148 | }; 149 | /* End PBXNativeTarget section */ 150 | 151 | /* Begin PBXProject section */ 152 | 97C146E61CF9000F007C117D /* Project object */ = { 153 | isa = PBXProject; 154 | attributes = { 155 | LastUpgradeCheck = 0910; 156 | ORGANIZATIONNAME = "The Chromium Authors"; 157 | TargetAttributes = { 158 | 97C146ED1CF9000F007C117D = { 159 | CreatedOnToolsVersion = 7.3.1; 160 | }; 161 | }; 162 | }; 163 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 164 | compatibilityVersion = "Xcode 3.2"; 165 | developmentRegion = English; 166 | hasScannedForEncodings = 0; 167 | knownRegions = ( 168 | en, 169 | Base, 170 | ); 171 | mainGroup = 97C146E51CF9000F007C117D; 172 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 173 | projectDirPath = ""; 174 | projectRoot = ""; 175 | targets = ( 176 | 97C146ED1CF9000F007C117D /* Runner */, 177 | ); 178 | }; 179 | /* End PBXProject section */ 180 | 181 | /* Begin PBXResourcesBuildPhase section */ 182 | 97C146EC1CF9000F007C117D /* Resources */ = { 183 | isa = PBXResourcesBuildPhase; 184 | buildActionMask = 2147483647; 185 | files = ( 186 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 187 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 188 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, 189 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 190 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 191 | ); 192 | runOnlyForDeploymentPostprocessing = 0; 193 | }; 194 | /* End PBXResourcesBuildPhase section */ 195 | 196 | /* Begin PBXShellScriptBuildPhase section */ 197 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 198 | isa = PBXShellScriptBuildPhase; 199 | buildActionMask = 2147483647; 200 | files = ( 201 | ); 202 | inputPaths = ( 203 | ); 204 | name = "Thin Binary"; 205 | outputPaths = ( 206 | ); 207 | runOnlyForDeploymentPostprocessing = 0; 208 | shellPath = /bin/sh; 209 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; 210 | }; 211 | 9740EEB61CF901F6004384FC /* Run Script */ = { 212 | isa = PBXShellScriptBuildPhase; 213 | buildActionMask = 2147483647; 214 | files = ( 215 | ); 216 | inputPaths = ( 217 | ); 218 | name = "Run Script"; 219 | outputPaths = ( 220 | ); 221 | runOnlyForDeploymentPostprocessing = 0; 222 | shellPath = /bin/sh; 223 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 224 | }; 225 | /* End PBXShellScriptBuildPhase section */ 226 | 227 | /* Begin PBXSourcesBuildPhase section */ 228 | 97C146EA1CF9000F007C117D /* Sources */ = { 229 | isa = PBXSourcesBuildPhase; 230 | buildActionMask = 2147483647; 231 | files = ( 232 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, 233 | 97C146F31CF9000F007C117D /* main.m in Sources */, 234 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 235 | ); 236 | runOnlyForDeploymentPostprocessing = 0; 237 | }; 238 | /* End PBXSourcesBuildPhase section */ 239 | 240 | /* Begin PBXVariantGroup section */ 241 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 242 | isa = PBXVariantGroup; 243 | children = ( 244 | 97C146FB1CF9000F007C117D /* Base */, 245 | ); 246 | name = Main.storyboard; 247 | sourceTree = ""; 248 | }; 249 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 250 | isa = PBXVariantGroup; 251 | children = ( 252 | 97C147001CF9000F007C117D /* Base */, 253 | ); 254 | name = LaunchScreen.storyboard; 255 | sourceTree = ""; 256 | }; 257 | /* End PBXVariantGroup section */ 258 | 259 | /* Begin XCBuildConfiguration section */ 260 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 261 | isa = XCBuildConfiguration; 262 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 263 | buildSettings = { 264 | ALWAYS_SEARCH_USER_PATHS = NO; 265 | CLANG_ANALYZER_NONNULL = YES; 266 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 267 | CLANG_CXX_LIBRARY = "libc++"; 268 | CLANG_ENABLE_MODULES = YES; 269 | CLANG_ENABLE_OBJC_ARC = YES; 270 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 271 | CLANG_WARN_BOOL_CONVERSION = YES; 272 | CLANG_WARN_COMMA = YES; 273 | CLANG_WARN_CONSTANT_CONVERSION = YES; 274 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 275 | CLANG_WARN_EMPTY_BODY = YES; 276 | CLANG_WARN_ENUM_CONVERSION = YES; 277 | CLANG_WARN_INFINITE_RECURSION = YES; 278 | CLANG_WARN_INT_CONVERSION = YES; 279 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 280 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 281 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 282 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 283 | CLANG_WARN_STRICT_PROTOTYPES = YES; 284 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 285 | CLANG_WARN_UNREACHABLE_CODE = YES; 286 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 287 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 288 | COPY_PHASE_STRIP = NO; 289 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 290 | ENABLE_NS_ASSERTIONS = NO; 291 | ENABLE_STRICT_OBJC_MSGSEND = YES; 292 | GCC_C_LANGUAGE_STANDARD = gnu99; 293 | GCC_NO_COMMON_BLOCKS = YES; 294 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 295 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 296 | GCC_WARN_UNDECLARED_SELECTOR = YES; 297 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 298 | GCC_WARN_UNUSED_FUNCTION = YES; 299 | GCC_WARN_UNUSED_VARIABLE = YES; 300 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 301 | MTL_ENABLE_DEBUG_INFO = NO; 302 | SDKROOT = iphoneos; 303 | TARGETED_DEVICE_FAMILY = "1,2"; 304 | VALIDATE_PRODUCT = YES; 305 | }; 306 | name = Profile; 307 | }; 308 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 309 | isa = XCBuildConfiguration; 310 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 311 | buildSettings = { 312 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 313 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 314 | DEVELOPMENT_TEAM = S8QB4VV633; 315 | ENABLE_BITCODE = NO; 316 | FRAMEWORK_SEARCH_PATHS = ( 317 | "$(inherited)", 318 | "$(PROJECT_DIR)/Flutter", 319 | ); 320 | INFOPLIST_FILE = Runner/Info.plist; 321 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 322 | LIBRARY_SEARCH_PATHS = ( 323 | "$(inherited)", 324 | "$(PROJECT_DIR)/Flutter", 325 | ); 326 | PRODUCT_BUNDLE_IDENTIFIER = com.example.website; 327 | PRODUCT_NAME = "$(TARGET_NAME)"; 328 | VERSIONING_SYSTEM = "apple-generic"; 329 | }; 330 | name = Profile; 331 | }; 332 | 97C147031CF9000F007C117D /* Debug */ = { 333 | isa = XCBuildConfiguration; 334 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 335 | buildSettings = { 336 | ALWAYS_SEARCH_USER_PATHS = NO; 337 | CLANG_ANALYZER_NONNULL = YES; 338 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 339 | CLANG_CXX_LIBRARY = "libc++"; 340 | CLANG_ENABLE_MODULES = YES; 341 | CLANG_ENABLE_OBJC_ARC = YES; 342 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 343 | CLANG_WARN_BOOL_CONVERSION = YES; 344 | CLANG_WARN_COMMA = YES; 345 | CLANG_WARN_CONSTANT_CONVERSION = YES; 346 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 347 | CLANG_WARN_EMPTY_BODY = YES; 348 | CLANG_WARN_ENUM_CONVERSION = YES; 349 | CLANG_WARN_INFINITE_RECURSION = YES; 350 | CLANG_WARN_INT_CONVERSION = YES; 351 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 352 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 353 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 354 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 355 | CLANG_WARN_STRICT_PROTOTYPES = YES; 356 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 357 | CLANG_WARN_UNREACHABLE_CODE = YES; 358 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 359 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 360 | COPY_PHASE_STRIP = NO; 361 | DEBUG_INFORMATION_FORMAT = dwarf; 362 | ENABLE_STRICT_OBJC_MSGSEND = YES; 363 | ENABLE_TESTABILITY = YES; 364 | GCC_C_LANGUAGE_STANDARD = gnu99; 365 | GCC_DYNAMIC_NO_PIC = NO; 366 | GCC_NO_COMMON_BLOCKS = YES; 367 | GCC_OPTIMIZATION_LEVEL = 0; 368 | GCC_PREPROCESSOR_DEFINITIONS = ( 369 | "DEBUG=1", 370 | "$(inherited)", 371 | ); 372 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 373 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 374 | GCC_WARN_UNDECLARED_SELECTOR = YES; 375 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 376 | GCC_WARN_UNUSED_FUNCTION = YES; 377 | GCC_WARN_UNUSED_VARIABLE = YES; 378 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 379 | MTL_ENABLE_DEBUG_INFO = YES; 380 | ONLY_ACTIVE_ARCH = YES; 381 | SDKROOT = iphoneos; 382 | TARGETED_DEVICE_FAMILY = "1,2"; 383 | }; 384 | name = Debug; 385 | }; 386 | 97C147041CF9000F007C117D /* Release */ = { 387 | isa = XCBuildConfiguration; 388 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 389 | buildSettings = { 390 | ALWAYS_SEARCH_USER_PATHS = NO; 391 | CLANG_ANALYZER_NONNULL = YES; 392 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 393 | CLANG_CXX_LIBRARY = "libc++"; 394 | CLANG_ENABLE_MODULES = YES; 395 | CLANG_ENABLE_OBJC_ARC = YES; 396 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 397 | CLANG_WARN_BOOL_CONVERSION = YES; 398 | CLANG_WARN_COMMA = YES; 399 | CLANG_WARN_CONSTANT_CONVERSION = YES; 400 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 401 | CLANG_WARN_EMPTY_BODY = YES; 402 | CLANG_WARN_ENUM_CONVERSION = YES; 403 | CLANG_WARN_INFINITE_RECURSION = YES; 404 | CLANG_WARN_INT_CONVERSION = YES; 405 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 406 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 407 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 408 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 409 | CLANG_WARN_STRICT_PROTOTYPES = YES; 410 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 411 | CLANG_WARN_UNREACHABLE_CODE = YES; 412 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 413 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 414 | COPY_PHASE_STRIP = NO; 415 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 416 | ENABLE_NS_ASSERTIONS = NO; 417 | ENABLE_STRICT_OBJC_MSGSEND = YES; 418 | GCC_C_LANGUAGE_STANDARD = gnu99; 419 | GCC_NO_COMMON_BLOCKS = YES; 420 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 421 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 422 | GCC_WARN_UNDECLARED_SELECTOR = YES; 423 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 424 | GCC_WARN_UNUSED_FUNCTION = YES; 425 | GCC_WARN_UNUSED_VARIABLE = YES; 426 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 427 | MTL_ENABLE_DEBUG_INFO = NO; 428 | SDKROOT = iphoneos; 429 | TARGETED_DEVICE_FAMILY = "1,2"; 430 | VALIDATE_PRODUCT = YES; 431 | }; 432 | name = Release; 433 | }; 434 | 97C147061CF9000F007C117D /* Debug */ = { 435 | isa = XCBuildConfiguration; 436 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 437 | buildSettings = { 438 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 439 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 440 | ENABLE_BITCODE = NO; 441 | FRAMEWORK_SEARCH_PATHS = ( 442 | "$(inherited)", 443 | "$(PROJECT_DIR)/Flutter", 444 | ); 445 | INFOPLIST_FILE = Runner/Info.plist; 446 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 447 | LIBRARY_SEARCH_PATHS = ( 448 | "$(inherited)", 449 | "$(PROJECT_DIR)/Flutter", 450 | ); 451 | PRODUCT_BUNDLE_IDENTIFIER = com.example.website; 452 | PRODUCT_NAME = "$(TARGET_NAME)"; 453 | VERSIONING_SYSTEM = "apple-generic"; 454 | }; 455 | name = Debug; 456 | }; 457 | 97C147071CF9000F007C117D /* Release */ = { 458 | isa = XCBuildConfiguration; 459 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 460 | buildSettings = { 461 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 462 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 463 | ENABLE_BITCODE = NO; 464 | FRAMEWORK_SEARCH_PATHS = ( 465 | "$(inherited)", 466 | "$(PROJECT_DIR)/Flutter", 467 | ); 468 | INFOPLIST_FILE = Runner/Info.plist; 469 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 470 | LIBRARY_SEARCH_PATHS = ( 471 | "$(inherited)", 472 | "$(PROJECT_DIR)/Flutter", 473 | ); 474 | PRODUCT_BUNDLE_IDENTIFIER = com.example.website; 475 | PRODUCT_NAME = "$(TARGET_NAME)"; 476 | VERSIONING_SYSTEM = "apple-generic"; 477 | }; 478 | name = Release; 479 | }; 480 | /* End XCBuildConfiguration section */ 481 | 482 | /* Begin XCConfigurationList section */ 483 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 484 | isa = XCConfigurationList; 485 | buildConfigurations = ( 486 | 97C147031CF9000F007C117D /* Debug */, 487 | 97C147041CF9000F007C117D /* Release */, 488 | 249021D3217E4FDB00AE95B9 /* Profile */, 489 | ); 490 | defaultConfigurationIsVisible = 0; 491 | defaultConfigurationName = Release; 492 | }; 493 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 494 | isa = XCConfigurationList; 495 | buildConfigurations = ( 496 | 97C147061CF9000F007C117D /* Debug */, 497 | 97C147071CF9000F007C117D /* Release */, 498 | 249021D4217E4FDB00AE95B9 /* Profile */, 499 | ); 500 | defaultConfigurationIsVisible = 0; 501 | defaultConfigurationName = Release; 502 | }; 503 | /* End XCConfigurationList section */ 504 | }; 505 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 506 | } 507 | -------------------------------------------------------------------------------- /website/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /website/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 33 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 56 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 75 | 77 | 83 | 84 | 85 | 86 | 88 | 89 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /website/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /website/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /website/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /website/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 | -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /website/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 | -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /website/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. -------------------------------------------------------------------------------- /website/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 | -------------------------------------------------------------------------------- /website/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 | -------------------------------------------------------------------------------- /website/ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | 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 | -------------------------------------------------------------------------------- /website/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /website/lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | import 'package:website/screens/home/home_screen.dart'; 3 | import 'package:website/screens/login/login.dart'; 4 | 5 | void main() => runApp(MyApp()); 6 | 7 | class MyApp extends StatelessWidget { 8 | @override 9 | Widget build(BuildContext context) { 10 | Map routes = { 11 | '/': (BuildContext context) => Login(), 12 | '/home': (BuildContext context) => HomeScreen(), 13 | }; 14 | return MaterialApp( 15 | initialRoute: '/', 16 | routes: routes, 17 | theme: ThemeData(fontFamily: 'HelveticaNeue'), 18 | debugShowCheckedModeBanner: false, 19 | title: 'Flutter Demo', 20 | ); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /website/lib/models/github_model.dart: -------------------------------------------------------------------------------- 1 | class GithubTrendingModel { 2 | String author; 3 | String name; 4 | String url; 5 | String description; 6 | String language; 7 | String languageColor; 8 | int stars; 9 | int forks; 10 | int currentPeriodStars; 11 | List builtBy; 12 | 13 | GithubTrendingModel( 14 | {this.author, 15 | this.name, 16 | this.url, 17 | this.description, 18 | this.language, 19 | this.languageColor, 20 | this.stars, 21 | this.forks, 22 | this.currentPeriodStars, 23 | this.builtBy}); 24 | 25 | GithubTrendingModel.fromJson(Map json) { 26 | author = json['author']; 27 | name = json['name']; 28 | url = json['url']; 29 | description = json['description']; 30 | language = json['language']; 31 | languageColor = json['languageColor']; 32 | stars = json['stars']; 33 | forks = json['forks']; 34 | currentPeriodStars = json['currentPeriodStars']; 35 | if (json['builtBy'] != null) { 36 | builtBy = new List(); 37 | json['builtBy'].forEach((v) { 38 | builtBy.add(new BuiltBy.fromJson(v)); 39 | }); 40 | } 41 | } 42 | 43 | Map toJson() { 44 | final Map data = new Map(); 45 | data['author'] = this.author; 46 | data['name'] = this.name; 47 | data['url'] = this.url; 48 | data['description'] = this.description; 49 | data['language'] = this.language; 50 | data['languageColor'] = this.languageColor; 51 | data['stars'] = this.stars; 52 | data['forks'] = this.forks; 53 | data['currentPeriodStars'] = this.currentPeriodStars; 54 | if (this.builtBy != null) { 55 | data['builtBy'] = this.builtBy.map((v) => v.toJson()).toList(); 56 | } 57 | return data; 58 | } 59 | } 60 | 61 | class BuiltBy { 62 | String username; 63 | String href; 64 | String avatar; 65 | 66 | BuiltBy({this.username, this.href, this.avatar}); 67 | 68 | BuiltBy.fromJson(Map json) { 69 | username = json['username']; 70 | href = json['href']; 71 | avatar = json['avatar']; 72 | } 73 | 74 | Map toJson() { 75 | final Map data = new Map(); 76 | data['username'] = this.username; 77 | data['href'] = this.href; 78 | data['avatar'] = this.avatar; 79 | return data; 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /website/lib/models/user.dart: -------------------------------------------------------------------------------- 1 | class User { 2 | static const String PassionWriting = 'Writing'; 3 | static const String PassionSinging = 'Singing'; 4 | static const String PassionTraveling = 'Travelling'; 5 | static const String PassionCooking = 'Cooking'; 6 | String firstName = ''; 7 | String lastName = ''; 8 | Map passions = { 9 | PassionWriting: false, 10 | PassionSinging: false, 11 | PassionTraveling: true, 12 | PassionCooking: true, 13 | }; 14 | bool monthlyNewsletter = false; 15 | bool yearlyNewsletter = false; 16 | bool weeklyNewsletter = true; 17 | save() { 18 | print('saving user using a web service'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /website/lib/screens/dashboard/dashboard.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | import 'package:website/models/github_model.dart'; 3 | import 'package:website/services/api_service.dart'; 4 | 5 | import 'package:website/utils/raw_data.dart'; 6 | import 'package:website/widgets/table_card.dart'; 7 | import 'package:website/widgets/ticket_cards.dart'; 8 | 9 | class Dashboard extends StatefulWidget { 10 | @override 11 | _DashboardState createState() => _DashboardState(); 12 | } 13 | 14 | class _DashboardState extends State { 15 | bool loading = false; 16 | @override 17 | void initState() { 18 | super.initState(); 19 | getDataFromUi(); 20 | } 21 | 22 | getDataFromUi() async { 23 | loading = false; 24 | await ApiData.getData(); 25 | setState(() { 26 | loading = true; 27 | }); 28 | } 29 | 30 | @override 31 | Widget build(BuildContext context) { 32 | print(MediaQuery.of(context).size.height); 33 | return CustomScrollView( 34 | slivers: [ 35 | SliverList( 36 | delegate: SliverChildListDelegate([ 37 | Container( 38 | margin: EdgeInsets.only(top: 12), 39 | child: Column( 40 | children: [ 41 | MediaQuery.of(context).size.width < 1300 42 | ? Column( 43 | mainAxisAlignment: MainAxisAlignment.spaceAround, 44 | children: List.generate(4, (i) { 45 | return tickets(colors[i], context, icons[i], 46 | randomNumbers[i], newTexts[i]); 47 | }), 48 | ) 49 | : Row( 50 | mainAxisAlignment: MainAxisAlignment.spaceAround, 51 | children: List.generate(4, (i) { 52 | return tickets(colors[i], context, icons[i], 53 | randomNumbers[i], newTexts[i]); 54 | })), 55 | SizedBox( 56 | height: 16, 57 | ), 58 | loading 59 | ? tableCard( 60 | context, 61 | ApiData.githubTrendingModel, 62 | ) 63 | : Center( 64 | child: CircularProgressIndicator(), 65 | ), 66 | ], 67 | ), 68 | ), 69 | ]), 70 | ), 71 | SliverGrid( 72 | gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( 73 | crossAxisCount: MediaQuery.of(context).size.width > 1300 ? 4 : 3, 74 | childAspectRatio: 75 | MediaQuery.of(context).size.width < 1300 ? 0.6 : 0.65, 76 | mainAxisSpacing: 10, 77 | ), 78 | delegate: SliverChildBuilderDelegate( 79 | (BuildContext context, int index) { 80 | return Card( 81 | shape: RoundedRectangleBorder( 82 | borderRadius: BorderRadius.circular(5.0), 83 | ), 84 | elevation: 2, 85 | margin: 86 | EdgeInsets.only(left: 10, right: 10, top: 10, bottom: 20), 87 | child: Container( 88 | padding: EdgeInsets.all(12), 89 | child: Column( 90 | crossAxisAlignment: CrossAxisAlignment.start, 91 | children: [ 92 | Image.network( 93 | 'https://placeimg.com/640/480/nature/grayscale', 94 | fit: BoxFit.fill, 95 | ), 96 | Container( 97 | child: Column( 98 | crossAxisAlignment: CrossAxisAlignment.center, 99 | // mainAxisAlignment: MainAxisAlignment.spaceAround, 100 | children: [ 101 | Padding( 102 | padding: const EdgeInsets.all(8.0), 103 | child: Text( 104 | "Beautiful Nature", 105 | style: TextStyle( 106 | fontSize: 16, 107 | fontFamily: 'HelveticaNeue', 108 | ), 109 | ), 110 | ), 111 | Padding( 112 | padding: const EdgeInsets.all(8.0), 113 | child: Text( 114 | '''The place is close to Metro Station and bus stop just 2 min by walk and near to "Naviglio" where you can enjoy the main night life in Milan.''', 115 | textAlign: TextAlign.center, 116 | style: TextStyle( 117 | fontSize: 14, 118 | fontWeight: FontWeight.bold, 119 | fontFamily: 'HelveticaNeue', 120 | ), 121 | ), 122 | ), 123 | Padding( 124 | padding: const EdgeInsets.all(8.0), 125 | child: Row( 126 | mainAxisAlignment: 127 | MainAxisAlignment.spaceAround, 128 | children: [ 129 | Text( 130 | "800/night", 131 | style: TextStyle( 132 | fontSize: 12, 133 | fontWeight: FontWeight.bold, 134 | fontFamily: 'HelveticaNeue', 135 | ), 136 | ), 137 | Row( 138 | children: [ 139 | Icon(Icons.location_on), 140 | Text( 141 | "Milan, Italy", 142 | style: TextStyle( 143 | fontSize: 12, 144 | fontWeight: FontWeight.bold, 145 | fontFamily: 'HelveticaNeue', 146 | ), 147 | ) 148 | ], 149 | ) 150 | ], 151 | ), 152 | ), 153 | SizedBox( 154 | height: 8, 155 | ), 156 | ], 157 | ), 158 | ), 159 | ]), 160 | ), 161 | ); 162 | }, 163 | childCount: 8, 164 | ), 165 | ) 166 | ], 167 | ); 168 | } 169 | } 170 | -------------------------------------------------------------------------------- /website/lib/screens/forms/form.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | 3 | import 'package:website/models/user.dart'; 4 | import 'package:website/utils/color_constants.dart'; 5 | 6 | class FormMaterial extends StatefulWidget { 7 | @override 8 | _FormMaterialState createState() => _FormMaterialState(); 9 | } 10 | 11 | class _FormMaterialState extends State { 12 | final _formKey = GlobalKey(); 13 | final _user = User(); 14 | 15 | @override 16 | Widget build(BuildContext context) { 17 | return SingleChildScrollView( 18 | child: Card( 19 | elevation: 2, 20 | margin: EdgeInsets.fromLTRB(64, 32, 64, 64), 21 | child: Padding( 22 | padding: const EdgeInsets.all(32.0), 23 | child: Container( 24 | padding: 25 | const EdgeInsets.symmetric(vertical: 16.0, horizontal: 16.0), 26 | child: Builder( 27 | builder: (context) => Form( 28 | key: _formKey, 29 | child: Column( 30 | crossAxisAlignment: CrossAxisAlignment.stretch, 31 | children: [ 32 | TextFormField( 33 | style: TextStyle( 34 | fontFamily: 'HelveticaNeue', 35 | ), 36 | decoration: InputDecoration( 37 | labelText: 'First name', 38 | labelStyle: TextStyle( 39 | fontSize: 18, 40 | color: Colors.black, 41 | fontWeight: FontWeight.bold, 42 | fontFamily: 'HelveticaNeue', 43 | ), 44 | ), 45 | validator: (value) { 46 | if (value.isEmpty) { 47 | return 'Please enter your first name'; 48 | } 49 | }, 50 | onSaved: (val) => 51 | setState(() => _user.firstName = val), 52 | ), 53 | TextFormField( 54 | decoration: InputDecoration( 55 | labelText: 'Last name', 56 | labelStyle: TextStyle( 57 | fontSize: 18, 58 | color: Colors.black, 59 | fontWeight: FontWeight.bold, 60 | fontFamily: 'HelveticaNeue', 61 | ), 62 | ), 63 | validator: (value) { 64 | if (value.isEmpty) { 65 | return 'Please enter your last name.'; 66 | } 67 | }, 68 | onSaved: (val) => 69 | setState(() => _user.lastName = val)), 70 | Container( 71 | padding: const EdgeInsets.fromLTRB(0, 50, 0, 20), 72 | child: Text( 73 | 'Subscribe', 74 | style: TextStyle( 75 | fontSize: 24, 76 | color: Colors.black, 77 | fontWeight: FontWeight.bold, 78 | fontFamily: 'HelveticaNeue', 79 | ), 80 | ), 81 | ), 82 | SwitchListTile( 83 | title: const Text( 84 | 'To our Monthly Subscription', 85 | style: TextStyle( 86 | fontSize: 18, 87 | color: Colors.black, 88 | fontFamily: 'HelveticaNeue', 89 | ), 90 | ), 91 | value: _user.monthlyNewsletter, 92 | onChanged: (bool val) => setState( 93 | () => _user.monthlyNewsletter = val)), 94 | SwitchListTile( 95 | title: const Text( 96 | 'To our Yearly Subscription', 97 | style: TextStyle( 98 | fontSize: 18, 99 | color: Colors.black, 100 | fontFamily: 'HelveticaNeue', 101 | ), 102 | ), 103 | value: _user.yearlyNewsletter, 104 | onChanged: (bool val) => setState( 105 | () => _user.yearlyNewsletter = val)), 106 | SwitchListTile( 107 | title: const Text( 108 | 'To our Weekly Subscription', 109 | style: TextStyle( 110 | fontSize: 18, 111 | color: Colors.black, 112 | fontFamily: 'HelveticaNeue', 113 | ), 114 | ), 115 | value: _user.weeklyNewsletter, 116 | onChanged: (bool val) => setState( 117 | () => _user.weeklyNewsletter = val)), 118 | Container( 119 | padding: const EdgeInsets.fromLTRB(0, 50, 0, 20), 120 | child: Text( 121 | 'Interests', 122 | style: TextStyle( 123 | fontSize: 24, 124 | color: Colors.black, 125 | fontWeight: FontWeight.bold, 126 | fontFamily: 'HelveticaNeue', 127 | ), 128 | ), 129 | ), 130 | CheckboxListTile( 131 | title: const Text( 132 | 'Writing', 133 | style: TextStyle( 134 | fontSize: 18, 135 | color: Colors.black, 136 | fontFamily: 'HelveticaNeue', 137 | ), 138 | ), 139 | value: _user.passions[User.PassionWriting], 140 | onChanged: (val) { 141 | setState(() => _user 142 | .passions[User.PassionWriting] = val); 143 | }), 144 | CheckboxListTile( 145 | title: const Text( 146 | 'Singing', 147 | style: TextStyle( 148 | fontSize: 18, 149 | color: Colors.black, 150 | fontFamily: 'HelveticaNeue', 151 | ), 152 | ), 153 | value: _user.passions[User.PassionSinging], 154 | onChanged: (val) { 155 | setState(() => _user 156 | .passions[User.PassionSinging] = val); 157 | }), 158 | CheckboxListTile( 159 | title: const Text( 160 | 'Travelling', 161 | style: TextStyle( 162 | fontSize: 18, 163 | color: Colors.black, 164 | fontFamily: 'HelveticaNeue', 165 | ), 166 | ), 167 | value: _user.passions[User.PassionTraveling], 168 | onChanged: (val) { 169 | setState(() => _user 170 | .passions[User.PassionTraveling] = val); 171 | }), 172 | CheckboxListTile( 173 | title: const Text( 174 | 'Cooking', 175 | style: TextStyle( 176 | fontSize: 18, 177 | color: Colors.black, 178 | fontFamily: 'HelveticaNeue', 179 | ), 180 | ), 181 | value: _user.passions[User.PassionCooking], 182 | onChanged: (val) { 183 | setState(() => _user 184 | .passions[User.PassionCooking] = val); 185 | }), 186 | Container( 187 | height: 80, 188 | // margin: EdgeInsets.only(left: 200, right: 200), 189 | padding: const EdgeInsets.symmetric( 190 | vertical: 16.0, horizontal: 16.0), 191 | child: RaisedButton( 192 | color: ColorConstants.blue, 193 | onPressed: () { 194 | if (_formKey.currentState.validate()) { 195 | _formKey.currentState.save(); 196 | _user.save(); 197 | _showDialog(context); 198 | print(_user); 199 | print(_user.firstName); 200 | } 201 | }, 202 | child: Text( 203 | 'Save', 204 | style: TextStyle( 205 | fontSize: 16, 206 | color: Colors.white, 207 | fontWeight: FontWeight.bold, 208 | fontFamily: 'HelveticaNeue', 209 | ), 210 | ))), 211 | ])))), 212 | ), 213 | ), 214 | ); 215 | } 216 | 217 | _showDialog(BuildContext context) { 218 | Scaffold.of(context) 219 | .showSnackBar(SnackBar(content: Text('Submitting form'))); 220 | } 221 | } 222 | -------------------------------------------------------------------------------- /website/lib/screens/forms/gender_widget.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /website/lib/screens/hero/hero_object.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | 3 | class PhotoHero extends StatelessWidget { 4 | const PhotoHero({Key key, this.photo, this.onTap, this.width}) 5 | : super(key: key); 6 | 7 | final String photo; 8 | final VoidCallback onTap; 9 | final double width; 10 | 11 | Widget build(BuildContext context) { 12 | return SizedBox( 13 | width: width, 14 | child: Hero( 15 | tag: photo, 16 | child: Material( 17 | color: Colors.transparent, 18 | child: InkWell( 19 | onTap: onTap, 20 | child: Image.asset( 21 | photo, 22 | fit: BoxFit.contain, 23 | ), 24 | ), 25 | ), 26 | ), 27 | ); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /website/lib/screens/hero/hero_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | import 'package:website/utils/raw_data.dart'; 3 | 4 | import 'hero_object.dart'; 5 | 6 | class HeroAnimation extends StatelessWidget { 7 | Widget build(BuildContext context) { 8 | return Scaffold( 9 | body: Center( 10 | child: Card( 11 | elevation: 2.0, 12 | child: Container( 13 | child: PhotoHero( 14 | photo: 'ironman.png', 15 | width: 300.0, 16 | onTap: () { 17 | Navigator.of(context).push( 18 | MaterialPageRoute(builder: (BuildContext context) { 19 | return Scaffold( 20 | body: Container( 21 | decoration: new BoxDecoration( 22 | gradient: new LinearGradient( 23 | colors: [ 24 | Colors.amberAccent, 25 | Colors.red, 26 | Colors.redAccent, 27 | Colors.amber 28 | ], 29 | begin: Alignment.topLeft, 30 | end: Alignment.bottomRight, 31 | stops: [0.0, 0.3, 0.6, 1.0], 32 | tileMode: TileMode.repeated), 33 | ), 34 | padding: const EdgeInsets.all(16.0), 35 | alignment: Alignment.topLeft, 36 | child: Row( 37 | crossAxisAlignment: CrossAxisAlignment.end, 38 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 39 | children: [ 40 | Container( 41 | margin: EdgeInsets.only( 42 | left: MediaQuery.of(context).size.width / 4.5, 43 | bottom: 200), 44 | child: PhotoHero( 45 | photo: 'ironman.png', 46 | width: MediaQuery.of(context).size.width / 4, 47 | onTap: () { 48 | Navigator.of(context).pop(); 49 | }, 50 | ), 51 | ), 52 | Flexible( 53 | child: Card( 54 | child: Container( 55 | color: Colors.white, 56 | padding: EdgeInsets.all(12), 57 | height: MediaQuery.of(context).size.height, 58 | width: MediaQuery.of(context).size.width / 4, 59 | child: ListView( 60 | children: 61 | List.generate(quotes.length, (i) { 62 | return quotesBuilder(quotes[i]); 63 | }), 64 | ), 65 | ), 66 | ), 67 | ), 68 | Container( 69 | width: 100, 70 | alignment: Alignment.topCenter, 71 | child: IconButton( 72 | iconSize: 40, 73 | icon: Icon( 74 | Icons.close, 75 | color: Colors.white, 76 | ), 77 | onPressed: () { 78 | Navigator.of(context).pop(); 79 | }, 80 | ), 81 | ), 82 | ], 83 | ), 84 | ), 85 | ); 86 | })); 87 | }, 88 | ), 89 | ), 90 | ), 91 | ), 92 | ); 93 | } 94 | 95 | Widget quotesBuilder(String quote) { 96 | return Container( 97 | margin: EdgeInsets.fromLTRB(32, 16, 32, 16), 98 | child: Text( 99 | quote, 100 | textAlign: TextAlign.left, 101 | style: TextStyle( 102 | fontSize: 18, 103 | //fontWeight: FontWeight.bold, 104 | color: Colors.black, 105 | fontFamily: 'GoogleSans', 106 | ), 107 | ), 108 | ); 109 | } 110 | } 111 | -------------------------------------------------------------------------------- /website/lib/screens/home/home_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | import 'package:website/screens/dashboard/dashboard.dart'; 3 | import 'package:website/screens/forms/form.dart'; 4 | import 'package:website/screens/hero/hero_screen.dart'; 5 | import 'package:website/utils/color_constants.dart'; 6 | 7 | class HomeScreen extends StatefulWidget { 8 | @override 9 | HomeScreenState createState() => HomeScreenState(); 10 | } 11 | 12 | class HomeScreenState extends State 13 | with SingleTickerProviderStateMixin { 14 | TabController tabController; 15 | int active = 0; 16 | @override 17 | void initState() { 18 | super.initState(); 19 | tabController = new TabController(vsync: this, length: 3, initialIndex: 0) 20 | ..addListener(() { 21 | setState(() { 22 | active = tabController.index; 23 | }); 24 | }); 25 | } 26 | 27 | @override 28 | void dispose() { 29 | tabController.dispose(); 30 | super.dispose(); 31 | } 32 | 33 | @override 34 | Widget build(BuildContext context) { 35 | return Scaffold( 36 | appBar: AppBar( 37 | automaticallyImplyLeading: 38 | MediaQuery.of(context).size.width < 1300 ? true : false, 39 | title: Row( 40 | crossAxisAlignment: CrossAxisAlignment.center, 41 | children: [ 42 | Container( 43 | margin: EdgeInsets.only(left: 32), 44 | child: Text( 45 | "Admin Material", 46 | style: TextStyle( 47 | fontSize: 24, 48 | color: Colors.white, 49 | fontWeight: FontWeight.bold, 50 | fontFamily: 'HelveticaNeue', 51 | ), 52 | ), 53 | ), 54 | ]), 55 | actions: [ 56 | InkWell( 57 | onTap: () { 58 | print("download"); 59 | }, 60 | child: Container( 61 | margin: EdgeInsets.all(12), 62 | padding: EdgeInsets.all(8), 63 | decoration: BoxDecoration( 64 | borderRadius: BorderRadius.circular(5), 65 | color: Colors.white, 66 | ), 67 | child: Row( 68 | crossAxisAlignment: CrossAxisAlignment.end, 69 | children: [ 70 | Icon( 71 | Icons.cloud_download, 72 | color: Colors.black, 73 | size: 22, 74 | ), 75 | SizedBox( 76 | width: 4, 77 | ), 78 | Text( 79 | "Download Now", 80 | style: TextStyle( 81 | fontSize: 12, 82 | color: Colors.black, 83 | fontFamily: 'HelveticaNeue', 84 | ), 85 | ), 86 | ], 87 | ), 88 | ), 89 | ), 90 | SizedBox(width: 32), 91 | Container(child: Icon(Icons.web)), 92 | SizedBox(width: 32), 93 | Container(child: Icon(Icons.account_circle)), 94 | SizedBox(width: 32), 95 | Container( 96 | child: IconButton( 97 | padding: EdgeInsets.all(0), 98 | icon: Icon(Icons.exit_to_app), 99 | onPressed: () { 100 | Navigator.pop(context); 101 | }, 102 | ), 103 | ), 104 | SizedBox(width: 32), 105 | ], 106 | backgroundColor: ColorConstants.blue, 107 | // automaticallyImplyLeading: false, 108 | ), 109 | body: Row( 110 | children: [ 111 | MediaQuery.of(context).size.width < 1300 112 | ? Container() 113 | : Card( 114 | elevation: 2.0, 115 | child: Container( 116 | margin: EdgeInsets.all(0), 117 | height: MediaQuery.of(context).size.height, 118 | width: 300, 119 | color: Colors.white, 120 | child: listDrawerItems(false)), 121 | ), 122 | Container( 123 | width: MediaQuery.of(context).size.width < 1300 124 | ? MediaQuery.of(context).size.width 125 | : MediaQuery.of(context).size.width - 310, 126 | child: TabBarView( 127 | physics: NeverScrollableScrollPhysics(), 128 | controller: tabController, 129 | children: [ 130 | Dashboard(), 131 | FormMaterial(), 132 | HeroAnimation(), 133 | ], 134 | ), 135 | ) 136 | ], 137 | ), 138 | drawer: Padding( 139 | padding: EdgeInsets.only(top: 56), 140 | child: Drawer(child: listDrawerItems(true))), 141 | ); 142 | } 143 | 144 | Widget listDrawerItems(bool drawerStatus) { 145 | return ListView( 146 | children: [ 147 | FlatButton( 148 | color: tabController.index == 0 ? Colors.grey[100] : Colors.white, 149 | //color: Colors.grey[100], 150 | onPressed: () { 151 | tabController.animateTo(0); 152 | drawerStatus ? Navigator.pop(context) : print(""); 153 | }, 154 | 155 | child: Align( 156 | alignment: Alignment.centerLeft, 157 | child: Container( 158 | padding: EdgeInsets.only(top: 22, bottom: 22, right: 22), 159 | child: Row(children: [ 160 | Icon(Icons.dashboard), 161 | SizedBox( 162 | width: 8, 163 | ), 164 | Text( 165 | "Dashboard", 166 | style: TextStyle( 167 | fontSize: 18, 168 | fontFamily: 'HelveticaNeue', 169 | ), 170 | ), 171 | ]), 172 | ), 173 | ), 174 | ), 175 | FlatButton( 176 | color: tabController.index == 1 ? Colors.grey[100] : Colors.white, 177 | onPressed: () { 178 | print(tabController.index); 179 | tabController.animateTo(1); 180 | drawerStatus ? Navigator.pop(context) : print(""); 181 | }, 182 | child: Align( 183 | alignment: Alignment.centerLeft, 184 | child: Container( 185 | padding: EdgeInsets.only(top: 22, bottom: 22, right: 22), 186 | child: Row(children: [ 187 | Icon(Icons.exit_to_app), 188 | SizedBox( 189 | width: 8, 190 | ), 191 | Text( 192 | "Forms", 193 | style: TextStyle( 194 | fontSize: 18, 195 | fontFamily: 'HelveticaNeue', 196 | ), 197 | ), 198 | ]), 199 | ), 200 | ), 201 | ), 202 | FlatButton( 203 | color: tabController.index == 2 ? Colors.grey[100] : Colors.white, 204 | onPressed: () { 205 | tabController.animateTo(2); 206 | drawerStatus ? Navigator.pop(context) : print(""); 207 | }, 208 | child: Align( 209 | alignment: Alignment.centerLeft, 210 | child: Container( 211 | padding: EdgeInsets.only(top: 22, bottom: 22, right: 22), 212 | child: Row(children: [ 213 | Icon(Icons.category), 214 | SizedBox( 215 | width: 8, 216 | ), 217 | Text( 218 | "Hero", 219 | style: TextStyle( 220 | fontSize: 18, 221 | fontFamily: 'HelveticaNeue', 222 | ), 223 | ), 224 | ]), 225 | ), 226 | ), 227 | ), 228 | ], 229 | ); 230 | } 231 | } 232 | -------------------------------------------------------------------------------- /website/lib/screens/login/login.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | import 'package:website/screens/home/home_screen.dart'; 3 | import 'package:website/services/api_service.dart'; 4 | import 'package:website/utils/color_constants.dart'; 5 | 6 | class Login extends StatefulWidget { 7 | Login({Key key, this.title}) : super(key: key); 8 | final String title; 9 | @override 10 | _LoginState createState() => _LoginState(); 11 | } 12 | 13 | class _LoginState extends State { 14 | bool isChecked = false; 15 | @override 16 | void initState() { 17 | super.initState(); 18 | } 19 | 20 | @override 21 | Widget build(BuildContext context) { 22 | final email = TextFormField( 23 | keyboardType: TextInputType.emailAddress, 24 | autofocus: false, 25 | decoration: InputDecoration( 26 | hintText: 'Email', 27 | contentPadding: EdgeInsets.fromLTRB(20.0, 10.0, 20.0, 10.0), 28 | ), 29 | ); 30 | 31 | final password = TextFormField( 32 | autofocus: false, 33 | initialValue: '', 34 | obscureText: true, 35 | decoration: InputDecoration( 36 | hintText: 'Password', 37 | contentPadding: EdgeInsets.fromLTRB(20.0, 10.0, 20.0, 10.0), 38 | ), 39 | ); 40 | 41 | final loginButton = Container( 42 | width: MediaQuery.of(context).size.width / 2.5, 43 | child: RaisedButton( 44 | onPressed: () { 45 | Navigator.push( 46 | context, 47 | MaterialPageRoute(builder: (context) => HomeScreen()), 48 | ); 49 | }, 50 | padding: EdgeInsets.all(12), 51 | color: ColorConstants.blue, 52 | child: Text('Log In', 53 | style: TextStyle( 54 | fontSize: 16, 55 | color: Colors.white, 56 | fontWeight: FontWeight.bold)), 57 | ), 58 | ); 59 | 60 | final forgotLabel = FlatButton( 61 | child: Text( 62 | 'Forgot password?', 63 | style: TextStyle(color: Colors.black54), 64 | ), 65 | onPressed: () {}, 66 | ); 67 | return Scaffold( 68 | backgroundColor: Colors.white, 69 | body: Stack( 70 | children: [ 71 | Column( 72 | children: [ 73 | Container( 74 | height: MediaQuery.of(context).size.height / 2, 75 | width: MediaQuery.of(context).size.width, 76 | color: Colors.white, 77 | ), 78 | Container( 79 | height: MediaQuery.of(context).size.height / 2, 80 | width: MediaQuery.of(context).size.width, 81 | color: ColorConstants.blue, 82 | ), 83 | ], 84 | ), 85 | Center( 86 | child: Card( 87 | elevation: 2.0, 88 | child: Container( 89 | padding: EdgeInsets.all(42), 90 | width: MediaQuery.of(context).size.width / 2.5, 91 | height: MediaQuery.of(context).size.height / 1.5, 92 | child: Column( 93 | children: [ 94 | SizedBox(height: 62.0), 95 | Center( 96 | child: Text( 97 | "Admin Material", 98 | style: TextStyle( 99 | fontSize: 28, 100 | fontWeight: FontWeight.bold, 101 | ), 102 | )), 103 | SizedBox(height: 48.0), 104 | email, 105 | SizedBox(height: 8.0), 106 | password, 107 | SizedBox(height: 24.0), 108 | Row( 109 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 110 | children: [ 111 | Row( 112 | children: [ 113 | Checkbox( 114 | value: isChecked, 115 | onChanged: (value) { 116 | setState(() { 117 | isChecked = value; 118 | }); 119 | }, 120 | ), 121 | Text("Remember Me") 122 | ], 123 | ), 124 | forgotLabel, 125 | ], 126 | ), 127 | SizedBox(height: 18.0), 128 | loginButton, 129 | ], 130 | ), 131 | ), 132 | ), 133 | ), 134 | ], 135 | ), 136 | ); 137 | } 138 | } 139 | -------------------------------------------------------------------------------- /website/lib/services/api_service.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert' as convert; 2 | import 'package:http/http.dart' as http; 3 | import 'package:website/models/github_model.dart'; 4 | 5 | class ApiData { 6 | static List githubTrendingModel; 7 | static Future getData() async { 8 | githubTrendingModel = []; 9 | var url = 10 | "https://github-trending-api.now.sh/repositories?language=&since=daily"; 11 | 12 | var response = await http.get(url); 13 | if (response.statusCode == 200) { 14 | var jsonResponse = convert.jsonDecode(response.body); 15 | print(jsonResponse); 16 | jsonResponse.forEach((data) { 17 | ApiData.githubTrendingModel.add(GithubTrendingModel.fromJson(data)); 18 | }); 19 | print(ApiData.githubTrendingModel); 20 | } else { 21 | print("Request failed with status: ${response.statusCode}."); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /website/lib/utils/color_constants.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | 3 | class ColorConstants { 4 | static Color blue = Color(0xFF0D46BB); 5 | } 6 | -------------------------------------------------------------------------------- /website/lib/utils/raw_data.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | 3 | List colors = [ 4 | Colors.pink, 5 | Colors.amber, 6 | Colors.teal, 7 | Colors.lightBlue, 8 | ]; 9 | List newTexts = [ 10 | "New Tickets!", 11 | "New task!", 12 | "New Orders!", 13 | "New Tickets!" 14 | ]; 15 | List randomNumbers = ["13", "12", "124", "13", "14"]; 16 | List icons = [ 17 | Icons.menu, 18 | Icons.track_changes, 19 | Icons.shopping_cart, 20 | Icons.question_answer 21 | ]; 22 | List elementsName = [ 23 | "Hydrogen", 24 | "Helium", 25 | "Lithium", 26 | "Beryllium", 27 | "Boron", 28 | "Carbon", 29 | "Nitrogen" 30 | ]; 31 | List elementsWeights = [ 32 | "1.0079", 33 | "4.0026", 34 | "6.941", 35 | "9.0122", 36 | "10.811", 37 | "12.0107", 38 | "14.0067" 39 | ]; 40 | List elementsSymbol = ["H", "He", "Li", "Be", "B", "C", "N"]; 41 | List quotes = [ 42 | "I did you a big favor. I have successfully privatized world peace. What more do you want?", 43 | "Following’s not really my style.", 44 | "Jarvis, sometimes you gotta run before you can walk.", 45 | "Okay, give me smooch for good luck, I might not make it back.", 46 | "I told you, I don’t want to join your super secret boy band.", 47 | "I am Iron Man.", 48 | "My name is Tony Stark and I’m not afraid of you. I know you’re a coward, so I decided… that you just died, pal. I’m gonna come get the body. There’s no politics here, it’s just good old-fashioned revenge.", 49 | ]; 50 | -------------------------------------------------------------------------------- /website/lib/widgets/table_card.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | 3 | import 'package:website/models/github_model.dart'; 4 | 5 | Widget tableCard(BuildContext context, List data) { 6 | return Card( 7 | elevation: 2.0, 8 | child: Column(children: [ 9 | Container( 10 | width: MediaQuery.of(context).size.width < 1300 11 | ? MediaQuery.of(context).size.width - 100 12 | : MediaQuery.of(context).size.width - 330, 13 | padding: EdgeInsets.only(bottom: 12), 14 | decoration: BoxDecoration( 15 | border: Border(bottom: BorderSide(width: 1, color: Colors.grey))), 16 | child: Table( 17 | columnWidths: { 18 | 0: FixedColumnWidth((MediaQuery.of(context).size.width / 5)), 19 | 1: FixedColumnWidth((MediaQuery.of(context).size.width / 5)), 20 | 2: FixedColumnWidth((MediaQuery.of(context).size.width / 5)), 21 | 3: FixedColumnWidth((MediaQuery.of(context).size.width / 5)), 22 | }, 23 | children: [ 24 | TableRow(decoration: BoxDecoration(), children: [ 25 | Container( 26 | padding: EdgeInsets.all(18), 27 | child: Text( 28 | "No.", 29 | style: TextStyle( 30 | fontSize: 18, 31 | color: Colors.black, 32 | fontWeight: FontWeight.bold, 33 | fontFamily: 'HelveticaNeue', 34 | ), 35 | ), 36 | ), 37 | Container( 38 | padding: EdgeInsets.all(18), 39 | child: Text( 40 | "Author Name", 41 | style: TextStyle( 42 | fontSize: 18, 43 | color: Colors.black, 44 | fontWeight: FontWeight.bold, 45 | fontFamily: 'HelveticaNeue', 46 | ), 47 | ), 48 | ), 49 | Container( 50 | padding: EdgeInsets.all(18), 51 | child: Text( 52 | "Language", 53 | style: TextStyle( 54 | fontSize: 18, 55 | color: Colors.black, 56 | fontWeight: FontWeight.bold, 57 | fontFamily: 'HelveticaNeue', 58 | ), 59 | ), 60 | ), 61 | Container( 62 | padding: EdgeInsets.all(18), 63 | child: Text( 64 | "Stars", 65 | style: TextStyle( 66 | fontSize: 18, 67 | color: Colors.black, 68 | fontWeight: FontWeight.bold, 69 | fontFamily: 'HelveticaNeue', 70 | ), 71 | ), 72 | ) 73 | ]), 74 | ], 75 | ), 76 | ), 77 | Container( 78 | width: MediaQuery.of(context).size.width < 1300 79 | ? MediaQuery.of(context).size.width - 100 80 | : MediaQuery.of(context).size.width - 330, 81 | // padding: EdgeInsets.all(32), 82 | child: Table( 83 | columnWidths: { 84 | 0: FixedColumnWidth((MediaQuery.of(context).size.width / 5)), 85 | 1: FixedColumnWidth((MediaQuery.of(context).size.width / 5)), 86 | 2: FixedColumnWidth((MediaQuery.of(context).size.width / 5)), 87 | 3: FixedColumnWidth((MediaQuery.of(context).size.width / 5)), 88 | }, 89 | children: List.generate(10, (i) { 90 | return TableRow( 91 | decoration: BoxDecoration( 92 | border: Border( 93 | bottom: BorderSide(width: 0.5, color: Colors.grey))), 94 | children: [ 95 | Container( 96 | padding: EdgeInsets.all(18), 97 | child: Text( 98 | (i + 1).toString(), 99 | style: TextStyle( 100 | fontSize: 14, 101 | color: Colors.black, 102 | fontFamily: 'Raleway', 103 | ), 104 | ), 105 | ), 106 | Container( 107 | padding: EdgeInsets.all(18), 108 | child: Text( 109 | data[i].author.toString(), 110 | style: TextStyle( 111 | fontSize: 14, 112 | color: Colors.black, 113 | fontFamily: 'HelveticaNeue', 114 | ), 115 | ), 116 | ), 117 | Container( 118 | padding: EdgeInsets.all(18), 119 | child: Text( 120 | data[i].language.toString(), 121 | style: TextStyle( 122 | fontSize: 14, 123 | color: Colors.black, 124 | fontFamily: 'Raleway', 125 | ), 126 | ), 127 | ), 128 | Container( 129 | padding: EdgeInsets.all(18), 130 | child: Text( 131 | data[i].stars.toString(), 132 | style: TextStyle( 133 | fontSize: 14, 134 | color: Colors.black, 135 | fontFamily: 'HelveticaNeue', 136 | ), 137 | ), 138 | ) 139 | ]); 140 | })), 141 | ), 142 | ]), 143 | ); 144 | } 145 | -------------------------------------------------------------------------------- /website/lib/widgets/ticket_cards.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web/material.dart'; 2 | 3 | Widget tickets(Color color, BuildContext context, IconData icon, 4 | String ticketsNumber, String newCount) { 5 | return Card( 6 | elevation: 2, 7 | child: Container( 8 | padding: EdgeInsets.all(22), 9 | color: color, 10 | width: MediaQuery.of(context).size.width < 1300 11 | ? MediaQuery.of(context).size.width - 100 12 | : MediaQuery.of(context).size.width / 5.5, 13 | height: MediaQuery.of(context).size.height / 6, 14 | child: Row( 15 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 16 | children: [ 17 | Column( 18 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 19 | children: [ 20 | Icon( 21 | icon, 22 | size: 36, 23 | color: Colors.white, 24 | ), 25 | Text( 26 | "View Details", 27 | style: TextStyle( 28 | fontSize: 18, 29 | color: Colors.white, 30 | // fontWeight: FontWeight.bold, 31 | fontFamily: 'HelveticaNeue', 32 | ), 33 | ) 34 | ], 35 | ), 36 | Column( 37 | crossAxisAlignment: CrossAxisAlignment.end, 38 | mainAxisAlignment: MainAxisAlignment.center, 39 | children: [ 40 | Text( 41 | ticketsNumber, 42 | style: TextStyle( 43 | fontSize: 34, 44 | color: Colors.white, 45 | fontWeight: FontWeight.bold, 46 | fontFamily: 'Raleway', 47 | ), 48 | ), 49 | SizedBox( 50 | height: 8, 51 | ), 52 | Text( 53 | newCount, 54 | style: TextStyle( 55 | fontSize: 14, 56 | color: Colors.white, 57 | // fontWeight: FontWeight.bold, 58 | fontFamily: 'HelveticaNeue', 59 | ), 60 | ) 61 | ], 62 | ) 63 | ], 64 | ), 65 | ), 66 | ); 67 | } 68 | -------------------------------------------------------------------------------- /website/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: website 2 | 3 | environment: 4 | sdk: ">=2.2.0 <3.0.0" 5 | 6 | dependencies: 7 | flutter_web: any 8 | flutter_web_ui: any 9 | http: ^0.12.0+2 10 | charts_common: 11 | dev_dependencies: 12 | build_runner: ^1.4.0 13 | build_web_compilers: ^2.0.0 14 | 15 | # flutter_web packages are not published to pub.dartlang.org 16 | # These overrides tell the package tools to get them from GitHub 17 | dependency_overrides: 18 | flutter_web: 19 | git: 20 | url: https://github.com/flutter/flutter_web 21 | path: packages/flutter_web 22 | flutter_web_ui: 23 | git: 24 | url: https://github.com/flutter/flutter_web 25 | path: packages/flutter_web_ui 26 | -------------------------------------------------------------------------------- /website/test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // // This is a basic Flutter widget test. 2 | // // 3 | // // To perform an interaction with a widget in your test, use the WidgetTester 4 | // // utility that Flutter provides. For example, you can send tap and scroll 5 | // // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | // import 'package:flutter/material.dart'; 9 | // import 'package:flutter_test/flutter_test.dart'; 10 | 11 | // import 'package:website/main.dart'; 12 | 13 | // void main() { 14 | // testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // // Build our app and trigger a frame. 16 | // await tester.pumpWidget(MyApp()); 17 | 18 | // // Verify that our counter starts at 0. 19 | // expect(find.text('0'), findsOneWidget); 20 | // expect(find.text('1'), findsNothing); 21 | 22 | // // Tap the '+' icon and trigger a frame. 23 | // await tester.tap(find.byIcon(Icons.add)); 24 | // await tester.pump(); 25 | 26 | // // Verify that our counter has incremented. 27 | // expect(find.text('0'), findsNothing); 28 | // expect(find.text('1'), findsOneWidget); 29 | // }); 30 | // } 31 | -------------------------------------------------------------------------------- /website/web/assets/FontManifest.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "family": "MaterialIcons", 4 | "fonts": [ 5 | { 6 | "asset": "https://fonts.gstatic.com/s/materialicons/v42/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2" 7 | } 8 | ] 9 | }, 10 | { 11 | "family": "HelveticaNeue", 12 | "fonts": [ 13 | { 14 | "asset": "fonts/HelveticaNeue/HelveticaNeueLt.ttf" 15 | } 16 | ] 17 | }, 18 | { 19 | "family": "Arvo", 20 | "fonts": [ 21 | { 22 | "asset": "fonts/Arvo/Arvo-Regular.ttf" 23 | }, 24 | { 25 | "asset": "fonts/Arvo/Arvo-Bold.ttf" 26 | } 27 | ] 28 | }, 29 | { 30 | "family": "GoogleSans", 31 | "fonts": [ 32 | { 33 | "asset": "fonts/GoogleSans-Regular.ttf" 34 | } 35 | ] 36 | }, 37 | { 38 | "family": "GalleryIcons", 39 | "fonts": [ 40 | { 41 | "asset": "fonts/GalleryIcons.ttf" 42 | } 43 | ] 44 | }, 45 | { 46 | "family": "AbrilFatface", 47 | "fonts": [ 48 | { 49 | "asset": "fonts/AbrilFatface-Regular.ttf" 50 | } 51 | ] 52 | }, 53 | { 54 | "family": "LibreFranklin", 55 | "fonts": [ 56 | { 57 | "asset": "fonts/LibreFranklin-Regular.ttf" 58 | } 59 | ] 60 | }, 61 | { 62 | "family": "Merriweather", 63 | "fonts": [ 64 | { 65 | "asset": "fonts/Merriweather-Regular.ttf" 66 | } 67 | ] 68 | }, 69 | { 70 | "family": "Raleway", 71 | "fonts": [ 72 | { 73 | "asset": "fonts/Raleway-Regular.ttf" 74 | } 75 | ] 76 | } 77 | ] 78 | -------------------------------------------------------------------------------- /website/web/assets/fonts/AbrilFatface-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/AbrilFatface-Regular.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/Arvo/Arvo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/Arvo/Arvo-Bold.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/Arvo/Arvo-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/Arvo/Arvo-BoldItalic.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/Arvo/Arvo-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/Arvo/Arvo-Italic.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/Arvo/Arvo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/Arvo/Arvo-Regular.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/Arvo/OFL.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2013, Anton Koovit (anton@korkork.com), with Reserved Font Name 'Arvo' 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | 8 | ----------------------------------------------------------- 9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | ----------------------------------------------------------- 11 | 12 | PREAMBLE 13 | The goals of the Open Font License (OFL) are to stimulate worldwide 14 | development of collaborative font projects, to support the font creation 15 | efforts of academic and linguistic communities, and to provide a free and 16 | open framework in which fonts may be shared and improved in partnership 17 | with others. 18 | 19 | The OFL allows the licensed fonts to be used, studied, modified and 20 | redistributed freely as long as they are not sold by themselves. The 21 | fonts, including any derivative works, can be bundled, embedded, 22 | redistributed and/or sold with any software provided that any reserved 23 | names are not used by derivative works. The fonts and derivatives, 24 | however, cannot be released under any other type of license. The 25 | requirement for fonts to remain under this license does not apply 26 | to any document created using the fonts or their derivatives. 27 | 28 | DEFINITIONS 29 | "Font Software" refers to the set of files released by the Copyright 30 | Holder(s) under this license and clearly marked as such. This may 31 | include source files, build scripts and documentation. 32 | 33 | "Reserved Font Name" refers to any names specified as such after the 34 | copyright statement(s). 35 | 36 | "Original Version" refers to the collection of Font Software components as 37 | distributed by the Copyright Holder(s). 38 | 39 | "Modified Version" refers to any derivative made by adding to, deleting, 40 | or substituting -- in part or in whole -- any of the components of the 41 | Original Version, by changing formats or by porting the Font Software to a 42 | new environment. 43 | 44 | "Author" refers to any designer, engineer, programmer, technical 45 | writer or other person who contributed to the Font Software. 46 | 47 | PERMISSION & CONDITIONS 48 | Permission is hereby granted, free of charge, to any person obtaining 49 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 50 | redistribute, and sell modified and unmodified copies of the Font 51 | Software, subject to the following conditions: 52 | 53 | 1) Neither the Font Software nor any of its individual components, 54 | in Original or Modified Versions, may be sold by itself. 55 | 56 | 2) Original or Modified Versions of the Font Software may be bundled, 57 | redistributed and/or sold with any software, provided that each copy 58 | contains the above copyright notice and this license. These can be 59 | included either as stand-alone text files, human-readable headers or 60 | in the appropriate machine-readable metadata fields within text or 61 | binary files as long as those fields can be easily viewed by the user. 62 | 63 | 3) No Modified Version of the Font Software may use the Reserved Font 64 | Name(s) unless explicit written permission is granted by the corresponding 65 | Copyright Holder. This restriction only applies to the primary font name as 66 | presented to the users. 67 | 68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 69 | Software shall not be used to promote, endorse or advertise any 70 | Modified Version, except to acknowledge the contribution(s) of the 71 | Copyright Holder(s) and the Author(s) or with their explicit written 72 | permission. 73 | 74 | 5) The Font Software, modified or unmodified, in part or in whole, 75 | must be distributed entirely under this license, and must not be 76 | distributed under any other license. The requirement for fonts to 77 | remain under this license does not apply to any document created 78 | using the Font Software. 79 | 80 | TERMINATION 81 | This license becomes null and void if any of the above conditions are 82 | not met. 83 | 84 | DISCLAIMER 85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 93 | OTHER DEALINGS IN THE FONT SOFTWARE. 94 | -------------------------------------------------------------------------------- /website/web/assets/fonts/GalleryIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/GalleryIcons.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/GoogleSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/GoogleSans-Regular.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/Helvetica Neu Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/Helvetica Neu Bold.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/HelveticaNeue BlackCond.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/HelveticaNeue BlackCond.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/HelveticaNeue Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/HelveticaNeue Light.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/HelveticaNeue Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/HelveticaNeue Medium.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/HelveticaNeue Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/HelveticaNeue Thin.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/HelveticaNeue-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/HelveticaNeue-Bold.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/HelveticaNeue-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/HelveticaNeue-Regular.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/HelveticaNeueHv.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/HelveticaNeueHv.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/HelveticaNeueIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/HelveticaNeueIt.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/HelveticaNeueLt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/HelveticaNeueLt.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/HelveticaNeueMed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/HelveticaNeueMed.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/freefontsdownload.txt: -------------------------------------------------------------------------------- 1 | This font was downloaded from 2 | 3 | Free Fonts Download 4 | 5 | http://www.freefontsdownload.net 6 | 7 | Thank you for download!!! -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/helveticaneue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/HelveticaNeue/helveticaneue.png -------------------------------------------------------------------------------- /website/web/assets/fonts/HelveticaNeue/www.freefontsdownload.net.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=HOMESITEfree-helveticaneue-font-74318.htm -------------------------------------------------------------------------------- /website/web/assets/fonts/LibreFranklin-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/LibreFranklin-Regular.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /website/web/assets/fonts/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/fonts/Raleway-Regular.ttf -------------------------------------------------------------------------------- /website/web/assets/ironman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/flutter-web-admin-dashbaord/03474737a96a83e95ee10f17d5583e38ef44e28c/website/web/assets/ironman.png -------------------------------------------------------------------------------- /website/web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Flutter Admin Dashboard 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /website/web/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_web_ui/ui.dart' as ui; 2 | import 'package:website/main.dart' as app; 3 | 4 | main() async { 5 | await ui.webOnlyInitializePlatform(); 6 | app.main(); 7 | } 8 | --------------------------------------------------------------------------------