├── ios ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner │ ├── Runner-Bridging-Header.h │ ├── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ ├── README.md │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── Contents.json │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ └── project.pbxproj └── .gitignore ├── UI.png ├── UI1.png ├── dark-mock.png ├── flutter_01.png ├── flutter_02.png ├── images ├── Book.png ├── Pad.png ├── Notes.png ├── Orange.png ├── Sheet.png ├── Sheets.png ├── human.png ├── Chapter.png ├── Openbook_.png ├── coverdark.png ├── Chapteralt_.png ├── Covernotes.png ├── coverImage.png ├── coverlight.png ├── humannote_.png └── crushedsheet.jpg ├── light-mock.png ├── fonts ├── GoogleSans-Bold.ttf ├── RobotoMono-Bold.ttf ├── RobotoMono-Thin.ttf ├── times-new-roman.ttf ├── GoogleSans-Italic.ttf ├── GoogleSans-Medium.ttf ├── RobotoMono-Italic.ttf ├── RobotoMono-Light.ttf ├── RobotoMono-Medium.ttf ├── GoogleSans-Regular.ttf ├── RobotoMono-Regular.ttf ├── RobotoMono-SemiBold.ttf ├── GoogleSans-BoldItalic.ttf ├── RobotoMono-BoldItalic.ttf ├── RobotoMono-ExtraLight.ttf ├── RobotoMono-LightItalic.ttf ├── RobotoMono-ThinItalic.ttf ├── GoogleSans-MediumItalic.ttf ├── RobotoMono-MediumItalic.ttf ├── RobotoMono-SemiBoldItalic.ttf └── RobotoMono-ExtraLightItalic.ttf ├── android ├── gradle.properties ├── .gitignore ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ ├── kotlin │ │ │ │ └── rajwrita │ │ │ │ │ └── noted │ │ │ │ │ └── MainActivity.kt │ │ │ └── AndroidManifest.xml │ │ ├── debug │ │ │ ├── gen │ │ │ │ └── rajwrita │ │ │ │ │ └── noted │ │ │ │ │ ├── R.java │ │ │ │ │ └── Manifest.java │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── build.gradle ├── lib ├── appInfo.dart ├── main.dart ├── syllabusPage.dart ├── notePage.dart ├── viewallPage.dart ├── search_page.dart ├── chaptersPage.dart └── home_page.dart ├── .metadata ├── .gitignore ├── test └── widget_test.dart ├── README.md ├── pubspec.yaml ├── Contribution-guidelines.md ├── pubspec.lock └── LICENSE /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/UI.png -------------------------------------------------------------------------------- /UI1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/UI1.png -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /dark-mock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/dark-mock.png -------------------------------------------------------------------------------- /flutter_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/flutter_01.png -------------------------------------------------------------------------------- /flutter_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/flutter_02.png -------------------------------------------------------------------------------- /images/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/Book.png -------------------------------------------------------------------------------- /images/Pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/Pad.png -------------------------------------------------------------------------------- /light-mock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/light-mock.png -------------------------------------------------------------------------------- /images/Notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/Notes.png -------------------------------------------------------------------------------- /images/Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/Orange.png -------------------------------------------------------------------------------- /images/Sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/Sheet.png -------------------------------------------------------------------------------- /images/Sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/Sheets.png -------------------------------------------------------------------------------- /images/human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/human.png -------------------------------------------------------------------------------- /images/Chapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/Chapter.png -------------------------------------------------------------------------------- /images/Openbook_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/Openbook_.png -------------------------------------------------------------------------------- /images/coverdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/coverdark.png -------------------------------------------------------------------------------- /images/Chapteralt_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/Chapteralt_.png -------------------------------------------------------------------------------- /images/Covernotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/Covernotes.png -------------------------------------------------------------------------------- /images/coverImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/coverImage.png -------------------------------------------------------------------------------- /images/coverlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/coverlight.png -------------------------------------------------------------------------------- /images/humannote_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/humannote_.png -------------------------------------------------------------------------------- /fonts/GoogleSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/GoogleSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /fonts/times-new-roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/times-new-roman.ttf -------------------------------------------------------------------------------- /images/crushedsheet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/images/crushedsheet.jpg -------------------------------------------------------------------------------- /fonts/GoogleSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/GoogleSans-Italic.ttf -------------------------------------------------------------------------------- /fonts/GoogleSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/GoogleSans-Medium.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /fonts/GoogleSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/GoogleSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/GoogleSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/GoogleSans-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/GoogleSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/GoogleSans-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/RobotoMono-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/fonts/RobotoMono-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /lib/appInfo.dart: -------------------------------------------------------------------------------- 1 | class appInfoClass { 2 | static String appInfo = 3 | 'Solve quizzes, discover subject topics, bookmark important notes and make studying easy :)'; 4 | } 5 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dscnsec/noted-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/rajwrita/noted/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package rajwrita.noted 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/debug/gen/rajwrita/noted/R.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package rajwrita.noted; 4 | 5 | /* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */ 6 | public final class R { 7 | } -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/debug/gen/rajwrita/noted/Manifest.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package rajwrita.noted; 4 | 5 | /* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */ 6 | public final class Manifest { 7 | } -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 8af6b2f038c1172e61d418869363a28dffec3cb4 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.mode2v3 3 | *.moved-aside 4 | *.pbxuser 5 | *.perspectivev3 6 | **/*sync/ 7 | .sconsign.dblite 8 | .tags* 9 | **/.vagrant/ 10 | **/DerivedData/ 11 | Icon? 12 | **/Pods/ 13 | **/.symlinks/ 14 | profile 15 | xcuserdata 16 | **/.generated/ 17 | Flutter/App.framework 18 | Flutter/Flutter.framework 19 | Flutter/Flutter.podspec 20 | Flutter/Generated.xcconfig 21 | Flutter/app.flx 22 | Flutter/app.zip 23 | Flutter/flutter_assets/ 24 | Flutter/flutter_export_environment.sh 25 | ServiceDefinitions.json 26 | Runner/GeneratedPluginRegistrant.* 27 | 28 | # Exceptions to above rules. 29 | !default.mode1v3 30 | !default.mode2v3 31 | !default.pbxuser 32 | !default.perspectivev3 33 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Flutter Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | include ':app' 6 | 7 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 8 | def properties = new Properties() 9 | 10 | assert localPropertiesFile.exists() 11 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 12 | 13 | def flutterSdkPath = properties.getProperty("flutter.sdk") 14 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 15 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 16 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.3.50' 3 | repositories { 4 | google() 5 | jcenter() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:3.5.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | jcenter() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | } 25 | subprojects { 26 | project.evaluationDependsOn(':app') 27 | } 28 | 29 | task clean(type: Delete) { 30 | delete rootProject.buildDir 31 | } 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | .dart_tool/ 26 | .flutter-plugins 27 | .flutter-plugins-dependencies 28 | .packages 29 | .pub-cache/ 30 | .pub/ 31 | /build/ 32 | 33 | # Web related 34 | lib/generated_plugin_registrant.dart 35 | 36 | # Symbolication related 37 | app.*.symbols 38 | 39 | # Obfuscation related 40 | app.*.map.json 41 | 42 | # Exceptions to above rules. 43 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages 44 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 8.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /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:noted/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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

noted

2 | 3 | 4 | 5 | 6 | 7 |
8 | Built and mentored with ❤︎ by 9 | Ayush Singh and 10 | 11 | Rajwrita Nath 12 | 13 |
14 | 15 |
16 | 17 | ![App Preview](dark-mock.png) 18 | 19 |
20 | 21 | ![App Preview](light-mock.png) 22 | 23 |
24 | 25 | ![App Preview](UI.png) 26 | 27 |
28 | 29 | ## Idea 30 | 31 | Find all your college syllabus notes and additional materials carefully curated but teachers in one place. Solve quizzes, discover subject topics, bookmark important notes and make studying easy. 32 | 33 | ## Getting Started 34 | 35 | This project is a starting point for a Flutter application. 36 | 37 | A few resources to get you started if this is your first Flutter project: 38 | 39 | - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) 40 | - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) 41 | 42 | For help getting started with Flutter, view our 43 | [online documentation](https://flutter.dev/docs), which offers tutorials, 44 | samples, guidance on mobile development, and a full API reference. 45 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | noted 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 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion 28 30 | 31 | sourceSets { 32 | main.java.srcDirs += 'src/main/kotlin' 33 | } 34 | 35 | lintOptions { 36 | disable 'InvalidPackage' 37 | } 38 | 39 | defaultConfig { 40 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 41 | applicationId "rajwrita.noted" 42 | minSdkVersion 16 43 | targetSdkVersion 28 44 | versionCode flutterVersionCode.toInteger() 45 | versionName flutterVersionName 46 | } 47 | 48 | buildTypes { 49 | release { 50 | // TODO: Add your own signing config for the release build. 51 | // Signing with the debug keys for now, so `flutter run --release` works. 52 | signingConfig signingConfigs.debug 53 | } 54 | } 55 | } 56 | 57 | flutter { 58 | source '../..' 59 | } 60 | 61 | dependencies { 62 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 63 | } 64 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:slider_button/slider_button.dart'; 3 | import './appInfo.dart'; 4 | import './home_page.dart'; 5 | 6 | void main() { 7 | runApp(MyApp()); 8 | } 9 | 10 | class MyApp extends StatelessWidget { 11 | // This widget is the root of your application. 12 | @override 13 | Widget build(BuildContext context) { 14 | return MaterialApp( 15 | title: 'Noted', 16 | debugShowCheckedModeBanner: false, 17 | home: MyHomePage(title: 'noted Home Page'), 18 | theme: ThemeData( 19 | primarySwatch: Colors.indigo, 20 | ), 21 | ); 22 | } 23 | } 24 | 25 | class MyHomePage extends StatefulWidget { 26 | MyHomePage({Key key, this.title}) : super(key: key); 27 | 28 | final String title; 29 | 30 | @override 31 | _MyHomePageState createState() => _MyHomePageState(); 32 | } 33 | 34 | class _MyHomePageState extends State { 35 | @override 36 | Widget build(BuildContext context) { 37 | return SafeArea( 38 | child: Scaffold( 39 | backgroundColor: Color(0xff264753), 40 | body: Column( 41 | children: [ 42 | Center( 43 | child: Container( 44 | height: MediaQuery.of(context).size.height * 0.8, 45 | width: MediaQuery.of(context).size.width * 0.9, 46 | child: Image.asset('images/coverdark.png'), 47 | ), 48 | ), 49 | Column( 50 | children: [ 51 | RaisedButton( 52 | padding: 53 | EdgeInsets.symmetric(horizontal: 30.0, vertical: 15.0), 54 | color: Color(0xFF29998C), 55 | child: Text( 56 | "Get Started", 57 | style: TextStyle(fontSize: 18.0, color: Colors.white), 58 | ), 59 | onPressed: () { 60 | Navigator.push( 61 | context, 62 | MaterialPageRoute(builder: (context) => HomePage()), 63 | ); 64 | }, 65 | shape: RoundedRectangleBorder( 66 | borderRadius: new BorderRadius.circular(30.0))) 67 | ], 68 | ), 69 | ], 70 | ), 71 | ), 72 | ); 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 8 | 12 | 19 | 23 | 27 | 32 | 36 | 37 | 38 | 39 | 40 | 41 | 43 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: noted 2 | description: A new Flutter application. 3 | 4 | # The following line prevents the package from being accidentally published to 5 | # pub.dev using `pub publish`. This is preferred for private packages. 6 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 7 | 8 | # The following defines the version and build number for your application. 9 | # A version number is three numbers separated by dots, like 1.2.43 10 | # followed by an optional build number separated by a +. 11 | # Both the version and the builder number may be overridden in flutter 12 | # build by specifying --build-name and --build-number, respectively. 13 | # In Android, build-name is used as versionName while build-number used as versionCode. 14 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 16 | # Read more about iOS versioning at 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 18 | version: 1.0.0+1 19 | 20 | environment: 21 | sdk: ">=2.7.0 <3.0.0" 22 | 23 | dependencies: 24 | cupertino_icons: ^0.1.3 25 | page_transition: ^1.1.7+2 26 | font_awesome_flutter: ^8.10.0 27 | timeline_tile: ^0.1.0 28 | 29 | flutter: 30 | sdk: flutter 31 | slider_button: ^0.6.0 32 | 33 | 34 | # The following adds the Cupertino Icons font to your application. 35 | # Use with the CupertinoIcons class for iOS style icons. 36 | 37 | 38 | dev_dependencies: 39 | flutter_test: 40 | sdk: flutter 41 | 42 | # For information on the generic Dart part of this file, see the 43 | # following page: https://dart.dev/tools/pub/pubspec 44 | 45 | # The following section is specific to Flutter. 46 | flutter: 47 | 48 | # The following line ensures that the Material Icons font is 49 | # included with your application, so that you can use the icons in 50 | # the material Icons class. 51 | uses-material-design: true 52 | 53 | # To add assets to your application, add an assets section, like this: 54 | assets: 55 | - images/ 56 | 57 | # An image asset can refer to one or more resolution-specific "variants", see 58 | # https://flutter.dev/assets-and-images/#resolution-aware. 59 | 60 | # For details regarding adding assets from package dependencies, see 61 | # https://flutter.dev/assets-and-images/#from-packages 62 | 63 | # To add custom fonts to your application, add a fonts section here, 64 | # in this "flutter" section. Each entry in this list should have a 65 | # "family" key with the font family name, and a "fonts" key with a 66 | # list giving the asset and other descriptors for the font. For 67 | # example: 68 | # fonts: 69 | # - family: Schyler 70 | # fonts: 71 | # - asset: fonts/Schyler-Regular.ttf 72 | # - asset: fonts/Schyler-Italic.ttf 73 | # style: italic 74 | # - family: Trajan Pro 75 | # fonts: 76 | # - asset: fonts/TrajanPro.ttf 77 | # - asset: fonts/TrajanPro_Bold.ttf 78 | # weight: 700 79 | # 80 | # For details regarding fonts from package dependencies, 81 | # see https://flutter.dev/custom-fonts/#from-packages 82 | fonts: 83 | - family: timesnewroman 84 | fonts: 85 | - asset: fonts/times-new-roman.ttf 86 | weight: 700 87 | - family: RobotoMono 88 | fonts: 89 | - asset: fonts/RobotoMono-Regular.ttf 90 | - asset: fonts/RobotoMono-Light.ttf 91 | - asset: fonts/RobotoMono-Bold.ttf 92 | weight: 700 93 | - family: productSans 94 | fonts: 95 | - asset: fonts/GoogleSans-Bold.ttf 96 | - asset: fonts/GoogleSans-Regular.ttf 97 | - asset: fonts/GoogleSans-Medium.ttf 98 | 99 | -------------------------------------------------------------------------------- /Contribution-guidelines.md: -------------------------------------------------------------------------------- 1 |

2 | Contribution Guidlines 3 |

4 | 5 | We want contributing to DSC NSEC to be fun, enjoyable, and educational for anyone and everyone. All contributions are welcome, including issues, new docs as well as updates, and more. 6 | 7 | Please note we have a [code of conduct](https://github.com/dscnsec/DSC-NSEC-App/blob/master/CODE_OF_CONDUCT.md), please follow it in all your interactions with the project. 8 | 9 | ## How to Open a Pull Request 10 | 11 | A big part of contributing to open source is submitting changes to a project: improvements to source code or tests, updates to docs content, even typos or broken links. This doc will cover what you need to know to **open a pull request**. 12 | 13 | In case you aren’t familiar, here’s how the folks at GitHub [define a pull request](https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/about-pull-requests): 14 | 15 | > *Pull requests let you tell others about changes you've pushed to a branch in a repository on GitHub. Once a pull request is opened, you can discuss and review the potential changes with collaborators and add follow-up commits before your changes are merged into the base branch.* 16 | 17 | DSC NSEC uses the PR process to review and test changes before they’re added to App’s GitHub repository. Anyone can open a pull request. The same process is used for all contributors, whether this is your first open source contribution or you’re a core member of the DSC NSEC Team. 18 | 19 | When someone wants to contribute to any repo, they open a request to pull their code into the repo. 20 | 21 | ### Opening PRs in DSC NSEC 22 | 23 | For any kind of change to files in our repo, you can follow the below steps. Be sure to check out additional tips for contributing to various parts of the repo later in this doc, such as docs changes, starters, or code improvements and tests. 24 | 25 | * [Fork and clone the repo](#fork-clone-and-branch-the-repository). 26 | * Run `pub get` to pull in all the dependencies. 27 | * Make your changes to the project. 28 | * [Create a branch in Git](https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging) to isolate your changes: 29 | ``` 30 | git checkout -b 31 | ``` 32 | * Once you have changes in Git you want to push, add them and create a commit. 33 | * Using a dot character . will add all untracked files in the current directory and subdirectories. 34 | ``` 35 | git add . 36 | ``` 37 | * Add any specific file using the command : 38 | ``` 39 | git add 40 | ``` 41 | * Commit your changes using the command : 42 | ``` 43 | git commit -m "your message here" 44 | ``` 45 | * Push your changes to your fork, assuming it is set up as origin: 46 | ``` 47 | git push origin head 48 | ``` 49 | 50 | ### Update your fork with the latest original repo changes 51 | 52 | Our repo will be very active during Winter of Code, so it’s likely you’ll need to update your fork with the latest changes to be able to merge in your code. This requires adding original repo as an upstream remote: 53 | 54 | * Set our repo URL as a remote source. The name of the remote is arbitrary; this example uses upstream. 55 | ``` 56 | git remote add upstream 57 | ``` 58 | * Fetch the latest changes from our repo: 59 | ``` 60 | git fetch upstream master 61 | ``` 62 | * In the branch you want to update, merge any changes from our repo into your fork: 63 | ``` 64 | git merge upstream/master 65 | ``` 66 | * Once your branch is in good working order, push the changes to your fork: 67 | ``` 68 | git push origin head 69 | ``` 70 | 71 | ## Fork, clone, and branch the repository 72 | 73 | * Fork the official [DSC NSEC App repository](https://github.com/dscnsec/DSC-NSEC-App). 74 | * Clone the fork: 75 | ``` 76 | git clone https://github.com/dscnsec/DSC-NSEC-App.git 77 | ``` 78 | * Set up repo and install dependencies. 79 | * Create your branch : `git checkout -b ` 80 | 81 |
82 |
83 | < Happy Contributing /> 84 |
85 | DSC NSEC | © 2020 86 |
87 | -------------------------------------------------------------------------------- /lib/syllabusPage.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:timeline_tile/timeline_tile.dart'; 3 | import 'home_page.dart'; 4 | 5 | class SyllabusPage extends StatefulWidget { 6 | @override 7 | _SyllabusPageState createState() => _SyllabusPageState(); 8 | } 9 | 10 | class _SyllabusPageState extends State { 11 | @override 12 | Widget build(BuildContext context) { 13 | double screenSize = MediaQuery.of(context).size.height; 14 | 15 | return Scaffold( 16 | backgroundColor: Color(0xfffbfcfc), 17 | body: ListView( 18 | children: [ 19 | Padding( 20 | padding: EdgeInsets.all(10.0), 21 | child: Column( 22 | children: [ 23 | HorizontalCard('Computer is bad for computers', 'profName', 24 | 'Openbook_.png'), 25 | HorizontalCard('Computer is bad for computers', 'profName', 26 | 'Openbook_.png'), 27 | ], 28 | ), 29 | ), 30 | ], 31 | ), 32 | ); 33 | } 34 | } 35 | 36 | class HorizontalCard extends StatelessWidget { 37 | final String subjName; 38 | final String profName; 39 | final String imgpPath; 40 | 41 | const HorizontalCard( 42 | this.subjName, 43 | this.profName, 44 | this.imgpPath, 45 | ); 46 | 47 | @override 48 | Widget build(BuildContext context) { 49 | double screenSize = MediaQuery.of(context).size.height; 50 | return Padding( 51 | padding: EdgeInsets.symmetric(vertical: 15.0), 52 | child: Container( 53 | child: Row( 54 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 55 | children: [ 56 | Flexible( 57 | child: Padding( 58 | padding: EdgeInsets.all(15.0), 59 | child: Column( 60 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 61 | crossAxisAlignment: CrossAxisAlignment.start, 62 | children: [ 63 | Flexible( 64 | child: Container( 65 | child: Text( 66 | subjName, 67 | style: TextStyle( 68 | fontSize: screenSize > 700 ? 22.0 : 20, 69 | fontFamily: 'RobotoMono', 70 | fontWeight: FontWeight.bold), 71 | ), 72 | ), 73 | ), 74 | Flexible( 75 | child: Container( 76 | child: Text( 77 | "By Prof. $profName", 78 | style: TextStyle( 79 | fontSize: screenSize > 700 ? 15.0 : 13, 80 | fontFamily: 'RobotoMono', 81 | fontWeight: FontWeight.w700), 82 | ), 83 | ), 84 | ), 85 | ], 86 | ), 87 | ), 88 | ), 89 | Container( 90 | height: screenSize > 700 91 | ? MediaQuery.of(context).size.height * 0.2 92 | : MediaQuery.of(context).size.height * 0.22, 93 | width: MediaQuery.of(context).size.width * 0.35, 94 | decoration: BoxDecoration( 95 | borderRadius: BorderRadius.only( 96 | topRight: Radius.circular(30.0), 97 | bottomRight: Radius.circular(30.0), 98 | ), 99 | //color: Colors.red, 100 | image: DecorationImage( 101 | image: AssetImage('images/$imgpPath'), fit: BoxFit.cover), 102 | ), 103 | ) 104 | ], 105 | ), 106 | height: screenSize > 700 107 | ? MediaQuery.of(context).size.height * 0.2 108 | : MediaQuery.of(context).size.height * 0.22, 109 | width: MediaQuery.of(context).size.width * 0.9, 110 | decoration: BoxDecoration( 111 | color: Color(0xfffbfcfc), 112 | //color: Colors.grey[200], 113 | borderRadius: BorderRadius.all( 114 | Radius.circular(30.0), 115 | ), 116 | boxShadow: [ 117 | new BoxShadow( 118 | offset: Offset(0, 15), 119 | color: Color(0xff666666).withOpacity(.11), 120 | blurRadius: 30.0, 121 | ), 122 | ], 123 | ), 124 | ), 125 | ); 126 | } 127 | } 128 | -------------------------------------------------------------------------------- /lib/notePage.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import './home_page.dart'; 3 | import './chaptersPage.dart'; 4 | 5 | class NotePage extends StatefulWidget { 6 | final String subjName; 7 | final String imgPath; 8 | 9 | const NotePage(this.imgPath, this.subjName); 10 | @override 11 | _NotePageState createState() => _NotePageState(); 12 | } 13 | 14 | class _NotePageState extends State { 15 | @override 16 | Widget build(BuildContext context) { 17 | String imagePath = widget.imgPath; 18 | return Scaffold( 19 | backgroundColor: Color(0xFF29998C), 20 | body: ListView( 21 | children: [ 22 | //alternate UI decision 23 | Container( 24 | height: MediaQuery.of(context).size.height * 0.2, 25 | width: MediaQuery.of(context).size.width, 26 | decoration: BoxDecoration( 27 | image: DecorationImage( 28 | image: AssetImage("images/Covernotes.png"), 29 | fit: BoxFit.cover)), 30 | ), 31 | Container( 32 | // height: MediaQuery.of(context).size.height * 0.8, 33 | decoration: BoxDecoration( 34 | color: Colors.white, 35 | borderRadius: BorderRadius.only( 36 | topLeft: Radius.circular(35.0), 37 | topRight: Radius.circular(35.0), 38 | ), 39 | ), 40 | child: Align( 41 | alignment: Alignment.centerLeft, 42 | child: Padding( 43 | padding: EdgeInsets.only(left: 28.0, top: 5.0), 44 | child: Column( 45 | children: [ 46 | Padding( 47 | padding: EdgeInsets.only(left: 0.0, top: 15.0), 48 | child: Text( 49 | widget.subjName, 50 | style: TextStyle( 51 | fontFamily: 'RobotoMono', 52 | fontSize: MediaQuery.of(context).size.width * 0.08, 53 | fontWeight: FontWeight.bold, 54 | color: Colors.black54), 55 | ), 56 | ), 57 | //Content will come down here 58 | Padding( 59 | padding: EdgeInsets.only( 60 | left: 0.0, 61 | right: 30.0, 62 | bottom: 20.0, 63 | top: 20.0, 64 | ), 65 | child: Align( 66 | alignment: Alignment.centerLeft, 67 | child: Text( 68 | 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum', 69 | textAlign: TextAlign.left, 70 | style: TextStyle( 71 | fontFamily: 'RobotoMono', 72 | fontSize: 73 | MediaQuery.of(context).size.width * 0.04, 74 | color: Colors.black54), 75 | ), 76 | ), 77 | ), 78 | Padding( 79 | padding: EdgeInsets.all(15.0), 80 | child: RaisedButton( 81 | padding: EdgeInsets.symmetric( 82 | horizontal: 30.0, 83 | vertical: 15.0, 84 | ), 85 | color: Color(0xFF29998C), 86 | child: Text( 87 | "Return to pathway", 88 | style: 89 | TextStyle(fontSize: 15.0, color: Colors.white), 90 | ), 91 | onPressed: () { 92 | Navigator.push( 93 | context, 94 | MaterialPageRoute( 95 | builder: (context) => HomePage()), 96 | ); 97 | }, 98 | shape: RoundedRectangleBorder( 99 | borderRadius: new BorderRadius.circular(30.0))), 100 | ) 101 | ], 102 | ), 103 | ), 104 | ), 105 | ), 106 | ], 107 | ), 108 | ); 109 | } 110 | } 111 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | archive: 5 | dependency: transitive 6 | description: 7 | name: archive 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.0.13" 11 | args: 12 | dependency: transitive 13 | description: 14 | name: args 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "1.6.0" 18 | async: 19 | dependency: transitive 20 | description: 21 | name: async 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.4.1" 25 | boolean_selector: 26 | dependency: transitive 27 | description: 28 | name: boolean_selector 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "2.0.0" 32 | charcode: 33 | dependency: transitive 34 | description: 35 | name: charcode 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.3" 39 | collection: 40 | dependency: transitive 41 | description: 42 | name: collection 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.14.12" 46 | convert: 47 | dependency: transitive 48 | description: 49 | name: convert 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "2.1.1" 53 | crypto: 54 | dependency: transitive 55 | description: 56 | name: crypto 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "2.1.4" 60 | cupertino_icons: 61 | dependency: "direct main" 62 | description: 63 | name: cupertino_icons 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "0.1.3" 67 | flutter: 68 | dependency: "direct main" 69 | description: flutter 70 | source: sdk 71 | version: "0.0.0" 72 | flutter_test: 73 | dependency: "direct dev" 74 | description: flutter 75 | source: sdk 76 | version: "0.0.0" 77 | font_awesome_flutter: 78 | dependency: "direct main" 79 | description: 80 | name: font_awesome_flutter 81 | url: "https://pub.dartlang.org" 82 | source: hosted 83 | version: "8.10.0" 84 | image: 85 | dependency: transitive 86 | description: 87 | name: image 88 | url: "https://pub.dartlang.org" 89 | source: hosted 90 | version: "2.1.12" 91 | matcher: 92 | dependency: transitive 93 | description: 94 | name: matcher 95 | url: "https://pub.dartlang.org" 96 | source: hosted 97 | version: "0.12.6" 98 | meta: 99 | dependency: transitive 100 | description: 101 | name: meta 102 | url: "https://pub.dartlang.org" 103 | source: hosted 104 | version: "1.1.8" 105 | page_transition: 106 | dependency: "direct main" 107 | description: 108 | name: page_transition 109 | url: "https://pub.dartlang.org" 110 | source: hosted 111 | version: "1.1.7+2" 112 | path: 113 | dependency: transitive 114 | description: 115 | name: path 116 | url: "https://pub.dartlang.org" 117 | source: hosted 118 | version: "1.6.4" 119 | petitparser: 120 | dependency: transitive 121 | description: 122 | name: petitparser 123 | url: "https://pub.dartlang.org" 124 | source: hosted 125 | version: "2.4.0" 126 | quiver: 127 | dependency: transitive 128 | description: 129 | name: quiver 130 | url: "https://pub.dartlang.org" 131 | source: hosted 132 | version: "2.1.3" 133 | sky_engine: 134 | dependency: transitive 135 | description: flutter 136 | source: sdk 137 | version: "0.0.99" 138 | slider_button: 139 | dependency: "direct main" 140 | description: 141 | name: slider_button 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "0.6.0" 145 | source_span: 146 | dependency: transitive 147 | description: 148 | name: source_span 149 | url: "https://pub.dartlang.org" 150 | source: hosted 151 | version: "1.7.0" 152 | stack_trace: 153 | dependency: transitive 154 | description: 155 | name: stack_trace 156 | url: "https://pub.dartlang.org" 157 | source: hosted 158 | version: "1.9.3" 159 | stream_channel: 160 | dependency: transitive 161 | description: 162 | name: stream_channel 163 | url: "https://pub.dartlang.org" 164 | source: hosted 165 | version: "2.0.0" 166 | string_scanner: 167 | dependency: transitive 168 | description: 169 | name: string_scanner 170 | url: "https://pub.dartlang.org" 171 | source: hosted 172 | version: "1.0.5" 173 | term_glyph: 174 | dependency: transitive 175 | description: 176 | name: term_glyph 177 | url: "https://pub.dartlang.org" 178 | source: hosted 179 | version: "1.1.0" 180 | test_api: 181 | dependency: transitive 182 | description: 183 | name: test_api 184 | url: "https://pub.dartlang.org" 185 | source: hosted 186 | version: "0.2.15" 187 | timeline_tile: 188 | dependency: "direct main" 189 | description: 190 | name: timeline_tile 191 | url: "https://pub.dartlang.org" 192 | source: hosted 193 | version: "0.1.2" 194 | typed_data: 195 | dependency: transitive 196 | description: 197 | name: typed_data 198 | url: "https://pub.dartlang.org" 199 | source: hosted 200 | version: "1.1.6" 201 | vector_math: 202 | dependency: transitive 203 | description: 204 | name: vector_math 205 | url: "https://pub.dartlang.org" 206 | source: hosted 207 | version: "2.0.8" 208 | vibration: 209 | dependency: transitive 210 | description: 211 | name: vibration 212 | url: "https://pub.dartlang.org" 213 | source: hosted 214 | version: "1.5.0" 215 | xml: 216 | dependency: transitive 217 | description: 218 | name: xml 219 | url: "https://pub.dartlang.org" 220 | source: hosted 221 | version: "3.6.1" 222 | sdks: 223 | dart: ">=2.7.0 <3.0.0" 224 | flutter: ">=1.10.0 <2.0.0" 225 | -------------------------------------------------------------------------------- /lib/viewallPage.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:timeline_tile/timeline_tile.dart'; 3 | import 'package:page_transition/page_transition.dart'; 4 | import 'home_page.dart'; 5 | import './notePage.dart'; 6 | import './chaptersPage.dart'; 7 | 8 | class ViewallPage extends StatefulWidget { 9 | @override 10 | _ViewallPageState createState() => _ViewallPageState(); 11 | } 12 | 13 | class _ViewallPageState extends State { 14 | @override 15 | Widget build(BuildContext context) { 16 | double screenSize = MediaQuery.of(context).size.height; 17 | 18 | return Scaffold( 19 | backgroundColor: Color(0xfffbfcfc), 20 | /*appBar: AppBar( 21 | iconTheme: IconThemeData(color: Color(0xff619b8a)), 22 | actions: [ 23 | Padding( 24 | padding: EdgeInsets.all(10.0), 25 | child: CircleAvatar( 26 | minRadius: 25.0, 27 | backgroundColor: Color(0xFF619b8a), 28 | ), 29 | ) 30 | ], 31 | title: Text( 32 | 'noted', 33 | style: TextStyle( 34 | fontSize: 38.0, 35 | color: Color(0xFF619b8a), 36 | fontFamily: 'timesnewroman', 37 | fontWeight: FontWeight.bold), 38 | ), 39 | centerTitle: true, 40 | elevation: 0, 41 | backgroundColor: Color(0xfffbfcfc), 42 | ),*/ 43 | body: ListView( 44 | children: [ 45 | Padding( 46 | padding: EdgeInsets.only( 47 | left: 10.0, 48 | right: 30.0, 49 | bottom: 10.0, 50 | top: 20.0, 51 | ), 52 | child: Row( 53 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 54 | children: [ 55 | IconButton( 56 | icon: Icon(Icons.arrow_back_ios), 57 | onPressed: () { 58 | Navigator.pop(context); 59 | 60 | Navigator.push( 61 | context, 62 | PageTransition( 63 | type: PageTransitionType.leftToRight, 64 | child: HomePage())); 65 | }, 66 | ), 67 | Text( 68 | 'All Notes', 69 | style: TextStyle( 70 | fontSize: 20.0, 71 | fontFamily: 'RobotoMono', 72 | fontWeight: FontWeight.bold), 73 | ), 74 | ], 75 | ), 76 | ), 77 | Padding( 78 | padding: EdgeInsets.all(10.0), 79 | child: Column( 80 | children: [ 81 | Row( 82 | children: [ 83 | CourseCard( 84 | 'Notes.png', 'Computer Architecture', 'Prof XYZ'), 85 | CourseCard('Sheets.png', 'Operating System', 'Prof XYZ'), 86 | ], 87 | ), 88 | Row( 89 | children: [ 90 | CourseCard( 91 | 'Notes.png', 'Computer Architecture', 'Prof XYZ'), 92 | CourseCard('Sheets.png', 'Operating System', 'Prof XYZ'), 93 | ], 94 | ), 95 | Row( 96 | children: [ 97 | CourseCard( 98 | 'Notes.png', 'Computer Architecture', 'Prof XYZ'), 99 | ], 100 | ), 101 | ], 102 | ), 103 | ), 104 | ], 105 | ), 106 | ); 107 | } 108 | } 109 | 110 | class CourseCard extends StatelessWidget { 111 | final String imgPath; 112 | final String courseName; 113 | final String teacher; 114 | 115 | CourseCard(this.imgPath, this.courseName, this.teacher); 116 | @override 117 | Widget build(BuildContext context) { 118 | return InkWell( 119 | onTap: () { 120 | Navigator.push( 121 | context, 122 | MaterialPageRoute(builder: (context) => ChaptersPage(courseName)), 123 | ); 124 | }, 125 | child: Padding( 126 | padding: EdgeInsets.all(5.0), 127 | child: Container( 128 | decoration: BoxDecoration( 129 | color: Color(0xfffbfcfc), 130 | //color: Colors.grey[200], 131 | borderRadius: BorderRadius.all( 132 | Radius.circular(30.0), 133 | ), 134 | boxShadow: [ 135 | new BoxShadow( 136 | offset: Offset(0, 15), 137 | color: Color(0xff666666).withOpacity(.11), 138 | blurRadius: 30.0, 139 | ), 140 | ], 141 | ), 142 | height: MediaQuery.of(context).size.height * 0.35, 143 | //3 144 | width: MediaQuery.of(context).size.width * 0.45, 145 | child: Padding( 146 | padding: EdgeInsets.symmetric(horizontal: 0.0, vertical: 0.0), 147 | //20 15 148 | child: Column( 149 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 150 | crossAxisAlignment: CrossAxisAlignment.start, 151 | children: [ 152 | Flexible( 153 | child: Padding( 154 | padding: EdgeInsets.only( 155 | left: 20.0, 156 | right: 0.0, 157 | bottom: 10.0, 158 | top: 15.0, 159 | ), 160 | //padding: EdgeInsets.only(left: 20.0), 161 | //padding: EdgeInsets.only(top: 10.0), 162 | child: Text( 163 | courseName, 164 | style: TextStyle( 165 | fontSize: 20.0, 166 | fontFamily: 'RobotoMono', 167 | fontWeight: FontWeight.bold), 168 | ), 169 | ), 170 | ), 171 | Padding( 172 | padding: EdgeInsets.only( 173 | left: 20.0, 174 | right: 0.0, 175 | bottom: 0.0, 176 | ), 177 | //padding: EdgeInsets.only(top: 0.0), 178 | child: Text( 179 | teacher, 180 | style: TextStyle( 181 | fontSize: 15.0, 182 | fontFamily: 'RobotoMono', 183 | fontWeight: FontWeight.bold), 184 | ), 185 | ), 186 | Padding( 187 | padding: EdgeInsets.only(left: 10.0, bottom: 10.0), 188 | child: Container( 189 | height: MediaQuery.of(context).size.height * 0.12, 190 | width: MediaQuery.of(context).size.width * 0.4, 191 | decoration: BoxDecoration( 192 | //color: Colors.yellow, 193 | image: DecorationImage( 194 | image: AssetImage('images/$imgPath'), 195 | fit: BoxFit.cover), 196 | ), 197 | ), 198 | ), 199 | //Spacer(), 200 | Row( 201 | children: [ 202 | GestureDetector( 203 | onTap: () {}, 204 | child: Container( 205 | width: 90, 206 | padding: EdgeInsets.symmetric(vertical: 10), 207 | alignment: Alignment.center, 208 | child: Text( 209 | "Details", 210 | style: TextStyle( 211 | fontSize: 12.0, 212 | fontFamily: 'RobotoMono', 213 | fontWeight: FontWeight.bold), 214 | ), 215 | ), 216 | ), 217 | Expanded( 218 | child: TwoSideRoundedButton( 219 | text: "Read", 220 | press: () {}, 221 | ), 222 | ), 223 | ], 224 | ) 225 | ], 226 | ), 227 | ), 228 | ), 229 | ), 230 | ); 231 | } 232 | } 233 | 234 | class TwoSideRoundedButton extends StatelessWidget { 235 | final String text; 236 | //final double radius; 237 | final Function press; 238 | const TwoSideRoundedButton({ 239 | Key key, 240 | this.text, 241 | //this.radius, 242 | this.press, 243 | }) : super(key: key); 244 | 245 | @override 246 | Widget build(BuildContext context) { 247 | return GestureDetector( 248 | onTap: press, 249 | child: Container( 250 | alignment: Alignment.center, 251 | padding: EdgeInsets.symmetric(vertical: 10), 252 | decoration: BoxDecoration( 253 | color: Color(0xFF619b8a), 254 | borderRadius: BorderRadius.only( 255 | topLeft: Radius.circular(30), 256 | bottomRight: Radius.circular(30), 257 | ), 258 | ), 259 | child: Text( 260 | text, 261 | style: TextStyle( 262 | color: Colors.white, 263 | fontSize: 12.0, 264 | fontFamily: 'RobotoMono', 265 | fontWeight: FontWeight.bold), 266 | ), 267 | ), 268 | ); 269 | } 270 | } 271 | -------------------------------------------------------------------------------- /lib/search_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/cupertino.dart'; 2 | import 'package:flutter/material.dart'; 3 | import './notePage.dart'; 4 | 5 | class Searchpage extends StatelessWidget { 6 | @override 7 | Widget build(BuildContext context) { 8 | return Scaffold( 9 | body: ListView( 10 | children: [ 11 | Padding( 12 | padding: EdgeInsets.only(right: 15.0, top: 20.0, left: 28.0), 13 | /*child: Text( 14 | 'Hi User', 15 | style: TextStyle(fontSize: 22.0, fontWeight: FontWeight.bold), 16 | ),*/ 17 | ), 18 | Padding( 19 | padding: EdgeInsets.only(right: 15.0, top: 10.0, left: 28.0), 20 | child: Text( 21 | 'Explore Notes', 22 | style: TextStyle( 23 | fontSize: 20.0, 24 | fontFamily: 'RobotoMono', 25 | fontWeight: FontWeight.bold), 26 | ), 27 | ), 28 | Padding( 29 | padding: EdgeInsets.symmetric(horizontal: 15.0, vertical: 15.0), 30 | child: SearchBar()), 31 | Padding( 32 | padding: EdgeInsets.all(10.0), 33 | child: Column( 34 | children: [ 35 | Row( 36 | children: [ 37 | CourseCard('Notes.png', 'Computer Architecture', 'Prof XYZ', 38 | '4th Semester'), 39 | CourseCard('Sheets.png', 'Operating System', 'Prof XYZ', 40 | '4th Semester'), 41 | ], 42 | ), 43 | Row( 44 | children: [ 45 | CourseCard('Notes.png', 'Computer Architecture', 'Prof XYZ', 46 | '4th Semester'), 47 | CourseCard('Sheets.png', 'Operating System', 'Prof XYZ', 48 | '4th Semester'), 49 | ], 50 | ), 51 | Row( 52 | children: [ 53 | CourseCard('Notes.png', 'Computer Architecture', 'Prof XYZ', 54 | '4th Semester'), 55 | ], 56 | ), 57 | ], 58 | ), 59 | ), 60 | ], 61 | )); 62 | } 63 | } 64 | 65 | class CourseCard extends StatelessWidget { 66 | final String imgPath; 67 | final String courseName; 68 | final String teacher; 69 | final String semester; 70 | 71 | CourseCard(this.imgPath, this.courseName, this.teacher, this.semester); 72 | @override 73 | Widget build(BuildContext context) { 74 | return InkWell( 75 | onTap: () { 76 | Navigator.push( 77 | context, 78 | MaterialPageRoute( 79 | builder: (context) => NotePage(imgPath, courseName)), 80 | ); 81 | }, 82 | child: Padding( 83 | padding: EdgeInsets.all(5.0), 84 | child: Container( 85 | decoration: BoxDecoration( 86 | //color: Color(0xfffbfcfc), 87 | color: Color(0xFF619b8a).withOpacity(0.11), 88 | //color: Colors.grey[200], 89 | borderRadius: BorderRadius.all( 90 | Radius.circular(30.0), 91 | ), 92 | boxShadow: [ 93 | new BoxShadow( 94 | offset: Offset(0, 15), 95 | color: Color(0xff666666).withOpacity(.11), 96 | blurRadius: 30.0, 97 | ), 98 | ], 99 | ), 100 | height: MediaQuery.of(context).size.height * 0.2, 101 | width: MediaQuery.of(context).size.width * 0.45, 102 | child: Padding( 103 | padding: EdgeInsets.symmetric(horizontal: 20.0, vertical: 15.0), 104 | child: Column( 105 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 106 | crossAxisAlignment: CrossAxisAlignment.start, 107 | children: [ 108 | Flexible( 109 | child: Padding( 110 | padding: EdgeInsets.only(left: 0.0), 111 | //padding: EdgeInsets.only(top: 10.0), 112 | child: Text( 113 | courseName, 114 | style: TextStyle( 115 | fontSize: 20.0, 116 | fontFamily: 'RobotoMono', 117 | fontWeight: FontWeight.bold), 118 | ), 119 | ), 120 | ), 121 | Column( 122 | children: [ 123 | Row( 124 | children: [ 125 | Padding( 126 | padding: EdgeInsets.only(left: 0.0), 127 | //padding: EdgeInsets.only(top: 0.0), 128 | child: Text( 129 | teacher, 130 | style: TextStyle( 131 | fontSize: 17.0, 132 | fontFamily: 'RobotoMono', 133 | fontWeight: FontWeight.bold, 134 | color: Colors.grey, 135 | ), 136 | ), 137 | ), 138 | ], 139 | ), 140 | Row( 141 | children: [ 142 | Padding( 143 | //padding: EdgeInsets.only(left: 0.0), 144 | padding: EdgeInsets.only(top: 0.9), 145 | child: Text( 146 | semester, 147 | style: TextStyle( 148 | fontSize: 15.0, 149 | fontFamily: 'RobotoMono', 150 | //fontWeight: FontWeight.bold, 151 | color: Colors.grey, 152 | ), 153 | ), 154 | ), 155 | ], 156 | ), 157 | ], 158 | ), 159 | /*Padding( 160 | padding: EdgeInsets.only(top: 0.0), 161 | child: Container( 162 | height: MediaQuery.of(context).size.height * 0.12, 163 | width: MediaQuery.of(context).size.width * 0.4, 164 | decoration: BoxDecoration( 165 | image: DecorationImage( 166 | image: AssetImage('images/$imgPath'), 167 | fit: BoxFit.cover), 168 | ), 169 | ), 170 | ),*/ 171 | ], 172 | ), 173 | ), 174 | ), 175 | ), 176 | ); 177 | } 178 | } 179 | 180 | class HorizontalCard extends StatelessWidget { 181 | final String subjName; 182 | final String profName; 183 | final String imgpPath; 184 | 185 | const HorizontalCard( 186 | this.subjName, 187 | this.profName, 188 | this.imgpPath, 189 | ); 190 | 191 | @override 192 | Widget build(BuildContext context) { 193 | double screenSize = MediaQuery.of(context).size.height; 194 | return Padding( 195 | padding: EdgeInsets.symmetric(vertical: 15.0), 196 | child: Container( 197 | child: Row( 198 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 199 | children: [ 200 | Flexible( 201 | child: Padding( 202 | padding: EdgeInsets.all(15.0), 203 | child: Column( 204 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, // 205 | crossAxisAlignment: CrossAxisAlignment.start, 206 | children: [ 207 | Flexible( 208 | child: Container( 209 | child: Text( 210 | subjName, 211 | style: TextStyle( 212 | fontSize: screenSize > 700 ? 22.0 : 20, 213 | fontFamily: 'RobotoMono', 214 | fontWeight: FontWeight.bold), 215 | ), 216 | ), 217 | ), 218 | Flexible( 219 | child: Container( 220 | child: Text( 221 | "By Prof. $profName", 222 | style: TextStyle( 223 | fontSize: screenSize > 700 ? 15.0 : 13, 224 | fontFamily: 'RobotoMono', 225 | fontWeight: FontWeight.w700), 226 | ), 227 | ), 228 | ), 229 | ], 230 | ), 231 | ), 232 | ), 233 | Container( 234 | height: screenSize > 700 235 | ? MediaQuery.of(context).size.height * 0.2 236 | : MediaQuery.of(context).size.height * 0.22, 237 | width: MediaQuery.of(context).size.width * 0.35, 238 | decoration: BoxDecoration( 239 | borderRadius: BorderRadius.only( 240 | topRight: Radius.circular(30.0), 241 | bottomRight: Radius.circular(30.0), 242 | ), 243 | //color: Colors.red, 244 | image: DecorationImage( 245 | image: AssetImage('images/$imgpPath'), fit: BoxFit.cover), 246 | ), 247 | ) 248 | ], 249 | ), 250 | height: screenSize > 700 251 | ? MediaQuery.of(context).size.height * 0.2 252 | : MediaQuery.of(context).size.height * 0.22, 253 | width: MediaQuery.of(context).size.width * 0.9, 254 | decoration: BoxDecoration( 255 | color: Color(0xfffbfcfc), 256 | //color: Colors.grey[200], 257 | borderRadius: BorderRadius.all( 258 | Radius.circular(30.0), 259 | ), 260 | boxShadow: [ 261 | new BoxShadow( 262 | color: Color(0xffe2e2e2), 263 | blurRadius: 6.0, 264 | ), 265 | ], 266 | ), 267 | ), 268 | ); 269 | } 270 | } 271 | 272 | class SearchBar extends StatefulWidget { 273 | @override 274 | _SearchBarState createState() => _SearchBarState(); 275 | } 276 | 277 | class _SearchBarState extends State { 278 | @override 279 | Widget build(BuildContext context) { 280 | return AnimatedContainer( 281 | duration: Duration(milliseconds: 400), 282 | width: 50.0, 283 | height: 56, 284 | decoration: BoxDecoration( 285 | borderRadius: BorderRadius.circular(32), 286 | color: Colors.white, 287 | boxShadow: [ 288 | new BoxShadow( 289 | offset: Offset(0, 15), 290 | color: Color(0xff666666).withOpacity(.11), 291 | blurRadius: 30.0, 292 | ), 293 | ], 294 | ), 295 | child: Row( 296 | children: [ 297 | Expanded( 298 | child: Container( 299 | padding: EdgeInsets.only(left: 16), 300 | child: TextField( 301 | decoration: InputDecoration( 302 | hintText: 'Search', 303 | hintStyle: 304 | TextStyle(color: Colors.grey, fontFamily: 'RobotoMono'), 305 | border: InputBorder.none), 306 | ), 307 | ), 308 | ), 309 | Container( 310 | child: Material( 311 | type: MaterialType.transparency, 312 | child: InkWell( 313 | borderRadius: BorderRadius.only( 314 | topLeft: Radius.circular(0.0), 315 | topRight: Radius.circular(32), 316 | bottomLeft: Radius.circular(0.0), 317 | bottomRight: Radius.circular(32), 318 | ), 319 | child: Padding( 320 | padding: const EdgeInsets.all(16.0), 321 | child: InkWell( 322 | child: Icon(Icons.search), 323 | onTap: () {}, 324 | )), 325 | ), 326 | ), 327 | ) 328 | ], 329 | ), 330 | ); 331 | } 332 | } 333 | -------------------------------------------------------------------------------- /lib/chaptersPage.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'home_page.dart'; 3 | import 'package:flutter/cupertino.dart'; 4 | import 'package:flutter/material.dart'; 5 | import 'package:page_transition/page_transition.dart'; 6 | import 'package:font_awesome_flutter/font_awesome_flutter.dart'; 7 | 8 | import './viewallPage.dart'; 9 | import './notePage.dart'; 10 | import './search_page.dart'; 11 | 12 | class ChaptersPage extends StatefulWidget { 13 | final String subjName; 14 | //final String imgPath; 15 | 16 | const ChaptersPage(this.subjName); 17 | @override 18 | _ChaptersPageState createState() => _ChaptersPageState(); 19 | } 20 | 21 | class _ChaptersPageState extends State { 22 | @override 23 | Widget build(BuildContext context) { 24 | var size = MediaQuery.of(context).size; 25 | return Scaffold( 26 | body: SingleChildScrollView( 27 | child: Column( 28 | crossAxisAlignment: CrossAxisAlignment.start, 29 | children: [ 30 | Stack( 31 | alignment: Alignment.topCenter, 32 | children: [ 33 | Container( 34 | height: size.height * .39, 35 | width: double.infinity, 36 | decoration: BoxDecoration( 37 | color: Color(0xFF619b8a).withOpacity(.22), 38 | borderRadius: BorderRadius.only( 39 | bottomLeft: Radius.circular(50), 40 | bottomRight: Radius.circular(50), 41 | ), 42 | ), 43 | child: Padding( 44 | padding: EdgeInsets.symmetric(horizontal: 5), 45 | child: Column( 46 | children: [ 47 | SizedBox(height: size.height * .05), 48 | Row( 49 | children: [ 50 | Expanded( 51 | child: Padding( 52 | padding: EdgeInsets.only( 53 | left: 18.0, 54 | right: 0.0, 55 | bottom: 0.0, 56 | ), 57 | child: Column( 58 | crossAxisAlignment: CrossAxisAlignment.start, 59 | children: [ 60 | Text( 61 | "Data Structures", 62 | style: TextStyle( 63 | fontSize: 25.0, 64 | fontFamily: 'RobotoMono', 65 | fontWeight: FontWeight.bold), 66 | ), 67 | Row( 68 | children: [ 69 | Expanded( 70 | child: Column( 71 | children: [ 72 | Text( 73 | "All Chapters", 74 | style: TextStyle( 75 | fontSize: 14.0, 76 | fontFamily: 'RobotoMono', 77 | color: Colors.grey, 78 | fontWeight: 79 | FontWeight.bold), 80 | ), 81 | ], 82 | ), 83 | ), 84 | Column( 85 | children: [ 86 | IconButton( 87 | icon: Icon(Icons.favorite_border), 88 | onPressed: () {}, 89 | ) 90 | ], 91 | ) 92 | ], 93 | ), 94 | ], 95 | ), 96 | ), 97 | ), 98 | Image.asset( 99 | "images/Chapteralt_.png", 100 | height: 230, 101 | ), 102 | ], 103 | ), 104 | ], 105 | ), 106 | ), 107 | ), 108 | Padding( 109 | padding: EdgeInsets.only(top: size.height * .4 - 30), 110 | child: Column( 111 | crossAxisAlignment: CrossAxisAlignment.start, 112 | children: [ 113 | ChapterCard( 114 | name: "Name", 115 | chapterNumber: 1, 116 | tag: "Some more chapter details", 117 | press: () { 118 | Navigator.push( 119 | context, 120 | MaterialPageRoute( 121 | builder: (context) => NotePage( 122 | 'images', 'Computer Architecture')), 123 | ); 124 | }, 125 | ), 126 | ChapterCard( 127 | name: "Name", 128 | chapterNumber: 2, 129 | tag: "Some more chapter details", 130 | press: () { 131 | Navigator.push( 132 | context, 133 | MaterialPageRoute( 134 | builder: (context) => NotePage( 135 | 'images', 'Computer Architecture')), 136 | ); 137 | }, 138 | ), 139 | ChapterCard( 140 | name: "Name", 141 | chapterNumber: 3, 142 | tag: "Some more chapter details", 143 | press: () { 144 | Navigator.push( 145 | context, 146 | MaterialPageRoute( 147 | builder: (context) => NotePage( 148 | 'images', 'Computer Architecture')), 149 | ); 150 | }, 151 | ), 152 | ChapterCard( 153 | name: "Name", 154 | chapterNumber: 4, 155 | tag: "Some more chapter details", 156 | press: () { 157 | Navigator.push( 158 | context, 159 | MaterialPageRoute( 160 | builder: (context) => NotePage( 161 | 'images', 'Computer Architecture')), 162 | ); 163 | }, 164 | ), 165 | ChapterCard( 166 | name: "Name", 167 | chapterNumber: 5, 168 | tag: "Some more chapter details", 169 | press: () { 170 | Navigator.push( 171 | context, 172 | MaterialPageRoute( 173 | builder: (context) => NotePage( 174 | 'images', 'Computer Architecture')), 175 | ); 176 | }, 177 | ), 178 | SizedBox(height: 10), 179 | ], 180 | ), 181 | ), 182 | ], 183 | ), 184 | //chapter cards 185 | ], 186 | ), 187 | ), 188 | ); 189 | } 190 | } 191 | 192 | class ChapterCard extends StatelessWidget { 193 | final String name; 194 | final String tag; 195 | final int chapterNumber; 196 | final Function press; 197 | const ChapterCard({ 198 | Key key, 199 | this.name, 200 | this.tag, 201 | this.press, 202 | this.chapterNumber, 203 | }) : super(key: key); 204 | 205 | @override 206 | Widget build(BuildContext context) { 207 | var size = MediaQuery.of(context).size; 208 | return Container( 209 | padding: EdgeInsets.symmetric(vertical: 20, horizontal: 30), 210 | margin: EdgeInsets.only(bottom: 16), 211 | width: size.width - 48, 212 | decoration: BoxDecoration( 213 | color: Colors.white, 214 | borderRadius: BorderRadius.circular(38.5), 215 | boxShadow: [ 216 | BoxShadow( 217 | offset: Offset(0, 10), 218 | blurRadius: 33, 219 | color: Color(0xffD3D3D3).withOpacity(.84), 220 | ), 221 | ], 222 | ), 223 | child: Row( 224 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 225 | crossAxisAlignment: CrossAxisAlignment.start, 226 | children: [ 227 | RichText( 228 | text: TextSpan( 229 | children: [ 230 | TextSpan( 231 | text: "Chapter $chapterNumber: $name \n", 232 | style: TextStyle( 233 | fontSize: 18, 234 | color: Colors.black, 235 | fontFamily: "RobotoMono", 236 | fontWeight: FontWeight.bold, 237 | ), 238 | ), 239 | TextSpan( 240 | text: tag, 241 | style: TextStyle( 242 | fontSize: 14, 243 | color: Colors.grey, 244 | fontFamily: "RobotoMono", 245 | fontWeight: FontWeight.bold, 246 | ), 247 | ), 248 | ], 249 | ), 250 | ), 251 | Spacer(), 252 | IconButton( 253 | icon: Icon( 254 | Icons.arrow_forward_ios, 255 | size: 18, 256 | ), 257 | onPressed: press, 258 | ) 259 | ], 260 | ), 261 | ); 262 | } 263 | } 264 | 265 | class HorizontalCard extends StatelessWidget { 266 | final String subjName; 267 | final String profName; 268 | final String imgpPath; 269 | 270 | const HorizontalCard( 271 | this.subjName, 272 | this.profName, 273 | this.imgpPath, 274 | ); 275 | 276 | @override 277 | Widget build(BuildContext context) { 278 | double screenSize = MediaQuery.of(context).size.height; 279 | return Padding( 280 | padding: EdgeInsets.symmetric(vertical: 15.0), 281 | child: Container( 282 | child: Row( 283 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 284 | children: [ 285 | Flexible( 286 | child: Padding( 287 | padding: EdgeInsets.all(15.0), 288 | child: Column( 289 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, // 290 | crossAxisAlignment: CrossAxisAlignment.start, 291 | children: [ 292 | Flexible( 293 | child: Container( 294 | child: Text( 295 | subjName, 296 | style: TextStyle( 297 | fontSize: screenSize > 700 ? 22.0 : 20, 298 | fontFamily: 'RobotoMono', 299 | fontWeight: FontWeight.bold), 300 | ), 301 | ), 302 | ), 303 | Flexible( 304 | child: Container( 305 | child: Text( 306 | "By Prof. $profName", 307 | style: TextStyle( 308 | fontSize: screenSize > 700 ? 15.0 : 13, 309 | fontFamily: 'RobotoMono', 310 | fontWeight: FontWeight.w700), 311 | ), 312 | ), 313 | ), 314 | ], 315 | ), 316 | ), 317 | ), 318 | Container( 319 | height: screenSize > 700 320 | ? MediaQuery.of(context).size.height * 0.2 321 | : MediaQuery.of(context).size.height * 0.22, 322 | width: MediaQuery.of(context).size.width * 0.35, 323 | decoration: BoxDecoration( 324 | borderRadius: BorderRadius.only( 325 | topRight: Radius.circular(30.0), 326 | bottomRight: Radius.circular(30.0), 327 | ), 328 | //color: Colors.red, 329 | image: DecorationImage( 330 | image: AssetImage('images/$imgpPath'), fit: BoxFit.cover), 331 | ), 332 | ) 333 | ], 334 | ), 335 | height: screenSize > 700 336 | ? MediaQuery.of(context).size.height * 0.2 337 | : MediaQuery.of(context).size.height * 0.22, 338 | width: MediaQuery.of(context).size.width * 0.9, 339 | decoration: BoxDecoration( 340 | color: Color(0xfffbfcfc), 341 | //color: Colors.grey[200], 342 | borderRadius: BorderRadius.all( 343 | Radius.circular(30.0), 344 | ), 345 | boxShadow: [ 346 | new BoxShadow( 347 | offset: Offset(0, 15), 348 | color: Color(0xff666666).withOpacity(.11), 349 | blurRadius: 30.0, 350 | ), 351 | ], 352 | ), 353 | ), 354 | ); 355 | } 356 | } 357 | -------------------------------------------------------------------------------- /lib/home_page.dart: -------------------------------------------------------------------------------- 1 | import 'dart:wasm'; 2 | 3 | import 'package:flutter/cupertino.dart'; 4 | import 'package:flutter/material.dart'; 5 | import 'package:page_transition/page_transition.dart'; 6 | import 'package:font_awesome_flutter/font_awesome_flutter.dart'; 7 | import './syllabusPage.dart'; 8 | import './viewallPage.dart'; 9 | import './notePage.dart'; 10 | import './search_page.dart'; 11 | import './chaptersPage.dart'; 12 | 13 | class HomePage extends StatefulWidget { 14 | @override 15 | _HomePageState createState() => _HomePageState(); 16 | } 17 | 18 | class _HomePageState extends State { 19 | @override 20 | Widget build(BuildContext context) { 21 | return SafeArea( 22 | child: Scaffold( 23 | backgroundColor: Color(0xFFd8e5e1), 24 | appBar: AppBar( 25 | actions: [ 26 | Padding( 27 | padding: EdgeInsets.all(10.0), 28 | child: CircleAvatar( 29 | minRadius: 25.0, 30 | backgroundColor: Colors.white, 31 | ), 32 | ) 33 | ], 34 | title: Text( 35 | 'noted', 36 | style: TextStyle( 37 | fontSize: 38.0, 38 | color: Colors.black45, 39 | fontFamily: 'timesnewroman', 40 | fontWeight: FontWeight.bold), 41 | ), 42 | centerTitle: true, 43 | elevation: 0, 44 | backgroundColor: Color(0xFFd8e5e1), 45 | ), 46 | drawer: Drawer( 47 | child: ListView( 48 | // Important: Remove any padding from the ListView. 49 | padding: EdgeInsets.zero, 50 | children: [ 51 | DrawerHeader( 52 | child: Text('Drawer Header'), 53 | decoration: BoxDecoration( 54 | color: Color(0xFF619b8a), 55 | ), 56 | ), 57 | ListTile( 58 | title: Text( 59 | 'Search', 60 | style: TextStyle( 61 | fontSize: 20.0, 62 | fontFamily: 'RobotoMono', 63 | fontWeight: FontWeight.w500), 64 | ), 65 | onTap: () { 66 | Navigator.pop(context); 67 | 68 | Navigator.push( 69 | context, 70 | PageTransition( 71 | type: PageTransitionType.leftToRight, 72 | child: Searchpage())); 73 | }, 74 | ), 75 | ListTile( 76 | title: Text( 77 | 'Syllabus', 78 | style: TextStyle( 79 | fontSize: 20.0, 80 | fontFamily: 'RobotoMono', 81 | fontWeight: FontWeight.w500), 82 | ), 83 | onTap: () { 84 | Navigator.pop(context); 85 | 86 | Navigator.push( 87 | context, 88 | PageTransition( 89 | type: PageTransitionType.leftToRight, 90 | child: SyllabusPage())); 91 | }, 92 | ), 93 | ], 94 | ), 95 | ), 96 | body: ListView( 97 | children: [ 98 | Padding( 99 | padding: EdgeInsets.only( 100 | left: 28.0, 101 | right: 10.0, 102 | bottom: 10.0, 103 | top: 20.0, 104 | ), 105 | child: Row( 106 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 107 | children: [ 108 | Text( 109 | 'My Notes', 110 | style: TextStyle( 111 | fontSize: 20.0, 112 | fontFamily: 'RobotoMono', 113 | fontWeight: FontWeight.bold), 114 | ), 115 | IconButton( 116 | icon: Icon(Icons.arrow_forward_ios), 117 | onPressed: () { 118 | Navigator.push( 119 | context, 120 | PageTransition( 121 | type: PageTransitionType.rightToLeft, 122 | child: ViewallPage())); 123 | }, 124 | ) 125 | ], 126 | ), 127 | ), 128 | Stack( 129 | children: [ 130 | Padding( 131 | padding: EdgeInsets.only(top: 60.0), 132 | child: Container( 133 | height: MediaQuery.of(context).size.height * 1.5, 134 | width: MediaQuery.of(context).size.width * 1.0, 135 | decoration: BoxDecoration( 136 | color: Color(0xfffbfcfc), 137 | borderRadius: BorderRadius.only( 138 | topLeft: Radius.circular(55.0), 139 | topRight: Radius.circular(55.0), 140 | ), 141 | ), 142 | ), 143 | ), 144 | Padding( 145 | padding: EdgeInsets.only( 146 | left: 0.0, 147 | right: 0.0, 148 | bottom: 10.0, 149 | ), 150 | child: Column( 151 | crossAxisAlignment: CrossAxisAlignment.start, 152 | children: [ 153 | SingleChildScrollView( 154 | scrollDirection: Axis.horizontal, 155 | child: Padding( 156 | padding: EdgeInsets.only( 157 | left: 0.0, 158 | right: 0.0, 159 | bottom: 30.0, 160 | ), 161 | child: Row( 162 | children: [ 163 | CourseCard('Notes.png', 'Computer Architecture', 164 | 'Prof XYZ'), 165 | CourseCard('Sheets.png', 'Operating System', 166 | 'Prof XYZ'), 167 | CourseCard('Notes.png', 'Machine Learning', 168 | 'Prof XYZ'), 169 | ], 170 | ), 171 | ), 172 | ), 173 | Padding( 174 | padding: EdgeInsets.symmetric( 175 | horizontal: 28.0, vertical: 10.0), 176 | child: Text( 177 | 'More to learn', 178 | style: TextStyle( 179 | //fontWeight: FontWeight.bold, 180 | fontSize: 20.0, 181 | fontFamily: 'RobotoMono', 182 | fontWeight: FontWeight.bold), 183 | ), 184 | ), 185 | Padding( 186 | padding: EdgeInsets.symmetric( 187 | horizontal: 20.0, vertical: 10.0), 188 | child: Column( 189 | children: [ 190 | HorizontalCard('Machine Learning', 191 | 'John Kumar Doe', 'Book.png'), 192 | HorizontalCard('Data Structures and Algorithm', 193 | 'John Das Doe', 'Openbook_.png'), 194 | HorizontalCard('Computer Architecture', 195 | 'John Doe', 'Book.png'), 196 | ], 197 | ), 198 | ), 199 | ], 200 | ), 201 | ), 202 | ], 203 | ) 204 | ], 205 | )), 206 | ); 207 | } 208 | } 209 | 210 | class HorizontalCard extends StatelessWidget { 211 | final String subjName; 212 | final String profName; 213 | final String imgpPath; 214 | 215 | const HorizontalCard( 216 | this.subjName, 217 | this.profName, 218 | this.imgpPath, 219 | ); 220 | 221 | @override 222 | Widget build(BuildContext context) { 223 | double screenSize = MediaQuery.of(context).size.height; 224 | return Padding( 225 | padding: EdgeInsets.symmetric(vertical: 15.0), 226 | child: Container( 227 | child: Row( 228 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 229 | children: [ 230 | Flexible( 231 | child: Padding( 232 | padding: EdgeInsets.all(15.0), 233 | child: Column( 234 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 235 | crossAxisAlignment: CrossAxisAlignment.start, 236 | children: [ 237 | Flexible( 238 | child: Container( 239 | child: Text( 240 | subjName, 241 | style: TextStyle( 242 | fontSize: screenSize > 700 ? 22.0 : 20, 243 | fontFamily: 'RobotoMono', 244 | fontWeight: FontWeight.bold), 245 | ), 246 | ), 247 | ), 248 | Flexible( 249 | child: Container( 250 | child: Text( 251 | "By Prof.$profName", 252 | style: TextStyle( 253 | fontSize: screenSize > 700 ? 18.0 : 15, 254 | fontFamily: 'RobotoMono', 255 | color: Colors.grey, 256 | fontWeight: FontWeight.w700), 257 | ), 258 | ), 259 | ), 260 | ], 261 | ), 262 | ), 263 | ), 264 | Container( 265 | height: screenSize > 700 266 | ? MediaQuery.of(context).size.height * 0.2 267 | : MediaQuery.of(context).size.height * 0.22, 268 | width: MediaQuery.of(context).size.width * 0.35, 269 | decoration: BoxDecoration( 270 | borderRadius: BorderRadius.only( 271 | topRight: Radius.circular(30.0), 272 | bottomRight: Radius.circular(30.0), 273 | ), 274 | //color: Colors.red, 275 | //color: Color(0xFF619b8a).withOpacity(0.11), 276 | image: DecorationImage( 277 | image: AssetImage('images/$imgpPath'), fit: BoxFit.cover), 278 | ), 279 | ) 280 | ], 281 | ), 282 | height: screenSize > 700 283 | ? MediaQuery.of(context).size.height * 0.2 284 | : MediaQuery.of(context).size.height * 0.22, 285 | width: MediaQuery.of(context).size.width * 0.9, 286 | decoration: BoxDecoration( 287 | //color: Color(0xfffbfcfc), 288 | color: Color(0xFF619b8a).withOpacity(0.11), 289 | //color: Colors.grey[200], 290 | borderRadius: BorderRadius.all( 291 | Radius.circular(30.0), 292 | ), 293 | boxShadow: [ 294 | new BoxShadow( 295 | offset: Offset(0, 15), 296 | color: Color(0xff666666).withOpacity(.11), 297 | blurRadius: 30.0, 298 | ), 299 | ], 300 | ), 301 | ), 302 | ); 303 | } 304 | } 305 | 306 | class CourseCard extends StatelessWidget { 307 | final String imgPath; 308 | final String courseName; 309 | final String teacher; 310 | 311 | CourseCard(this.imgPath, this.courseName, this.teacher); 312 | @override 313 | Widget build(BuildContext context) { 314 | return InkWell( 315 | onTap: () { 316 | Navigator.push( 317 | context, 318 | MaterialPageRoute(builder: (context) => ChaptersPage(courseName)), 319 | ); 320 | }, 321 | child: Padding( 322 | padding: EdgeInsets.all(12.0), 323 | child: Container( 324 | decoration: BoxDecoration( 325 | color: Color(0xfffbfcfc), 326 | //color: Colors.grey[200], 327 | borderRadius: BorderRadius.all( 328 | Radius.circular(30.0), 329 | ), 330 | boxShadow: [ 331 | new BoxShadow( 332 | offset: Offset(0, 15), 333 | color: Color(0xff666666).withOpacity(.11), 334 | blurRadius: 30.0, 335 | ), 336 | ], 337 | ), 338 | height: MediaQuery.of(context).size.height * 0.35, 339 | //3 340 | width: MediaQuery.of(context).size.width * 0.45, 341 | child: Padding( 342 | padding: EdgeInsets.symmetric(horizontal: 0.0, vertical: 0.0), 343 | //20 15 344 | child: Column( 345 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 346 | crossAxisAlignment: CrossAxisAlignment.start, 347 | children: [ 348 | Flexible( 349 | child: Padding( 350 | padding: EdgeInsets.only( 351 | left: 20.0, 352 | right: 0.0, 353 | bottom: 10.0, 354 | top: 15.0, 355 | ), 356 | //padding: EdgeInsets.only(left: 20.0), 357 | //padding: EdgeInsets.only(top: 10.0), 358 | child: Text( 359 | courseName, 360 | style: TextStyle( 361 | fontSize: 20.0, 362 | fontFamily: 'RobotoMono', 363 | fontWeight: FontWeight.bold), 364 | ), 365 | ), 366 | ), 367 | Padding( 368 | padding: EdgeInsets.only( 369 | left: 20.0, 370 | right: 0.0, 371 | bottom: 0.0, 372 | ), 373 | //padding: EdgeInsets.only(top: 0.0), 374 | child: Text( 375 | teacher, 376 | style: TextStyle( 377 | fontSize: 15.0, 378 | fontFamily: 'RobotoMono', 379 | color: Colors.grey, 380 | fontWeight: FontWeight.bold), 381 | ), 382 | ), 383 | Padding( 384 | padding: EdgeInsets.only(left: 10.0, bottom: 10.0), 385 | child: Container( 386 | height: MediaQuery.of(context).size.height * 0.12, 387 | width: MediaQuery.of(context).size.width * 0.4, 388 | decoration: BoxDecoration( 389 | //color: Colors.yellow, 390 | image: DecorationImage( 391 | image: AssetImage('images/$imgPath'), 392 | fit: BoxFit.cover), 393 | ), 394 | ), 395 | ), 396 | //Spacer(), 397 | Row( 398 | children: [ 399 | GestureDetector( 400 | onTap: () {}, 401 | child: Container( 402 | width: 90, 403 | padding: EdgeInsets.symmetric(vertical: 10), 404 | alignment: Alignment.center, 405 | child: Text( 406 | "Details", 407 | style: TextStyle( 408 | fontSize: 12.0, 409 | fontFamily: 'RobotoMono', 410 | fontWeight: FontWeight.bold), 411 | ), 412 | ), 413 | ), 414 | Expanded( 415 | child: TwoSideRoundedButton( 416 | text: "Read", 417 | press: () {}, 418 | ), 419 | ), 420 | ], 421 | ) 422 | ], 423 | ), 424 | ), 425 | ), 426 | ), 427 | ); 428 | } 429 | } 430 | 431 | class TwoSideRoundedButton extends StatelessWidget { 432 | final String text; 433 | //final double radius; 434 | final Function press; 435 | const TwoSideRoundedButton({ 436 | Key key, 437 | this.text, 438 | //this.radius, 439 | this.press, 440 | }) : super(key: key); 441 | 442 | @override 443 | Widget build(BuildContext context) { 444 | return GestureDetector( 445 | onTap: press, 446 | child: Container( 447 | alignment: Alignment.center, 448 | padding: EdgeInsets.symmetric(vertical: 10), 449 | decoration: BoxDecoration( 450 | color: Color(0xFF619b8a), 451 | borderRadius: BorderRadius.only( 452 | topLeft: Radius.circular(30), 453 | bottomRight: Radius.circular(30), 454 | ), 455 | ), 456 | child: Text( 457 | text, 458 | style: TextStyle( 459 | color: Colors.white, 460 | fontSize: 12.0, 461 | fontFamily: 'RobotoMono', 462 | fontWeight: FontWeight.bold), 463 | ), 464 | ), 465 | ); 466 | } 467 | } 468 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 13 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 14 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 15 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXCopyFilesBuildPhase section */ 19 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 20 | isa = PBXCopyFilesBuildPhase; 21 | buildActionMask = 2147483647; 22 | dstPath = ""; 23 | dstSubfolderSpec = 10; 24 | files = ( 25 | ); 26 | name = "Embed Frameworks"; 27 | runOnlyForDeploymentPostprocessing = 0; 28 | }; 29 | /* End PBXCopyFilesBuildPhase section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 33 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 34 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 35 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 36 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 38 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 39 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 40 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 42 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 43 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 44 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 45 | /* End PBXFileReference section */ 46 | 47 | /* Begin PBXFrameworksBuildPhase section */ 48 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 49 | isa = PBXFrameworksBuildPhase; 50 | buildActionMask = 2147483647; 51 | files = ( 52 | ); 53 | runOnlyForDeploymentPostprocessing = 0; 54 | }; 55 | /* End PBXFrameworksBuildPhase section */ 56 | 57 | /* Begin PBXGroup section */ 58 | 9740EEB11CF90186004384FC /* Flutter */ = { 59 | isa = PBXGroup; 60 | children = ( 61 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 62 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 63 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 64 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 65 | ); 66 | name = Flutter; 67 | sourceTree = ""; 68 | }; 69 | 97C146E51CF9000F007C117D = { 70 | isa = PBXGroup; 71 | children = ( 72 | 9740EEB11CF90186004384FC /* Flutter */, 73 | 97C146F01CF9000F007C117D /* Runner */, 74 | 97C146EF1CF9000F007C117D /* Products */, 75 | ); 76 | sourceTree = ""; 77 | }; 78 | 97C146EF1CF9000F007C117D /* Products */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 97C146EE1CF9000F007C117D /* Runner.app */, 82 | ); 83 | name = Products; 84 | sourceTree = ""; 85 | }; 86 | 97C146F01CF9000F007C117D /* Runner */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 90 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 91 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 92 | 97C147021CF9000F007C117D /* Info.plist */, 93 | 97C146F11CF9000F007C117D /* Supporting Files */, 94 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 95 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 96 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 97 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 98 | ); 99 | path = Runner; 100 | sourceTree = ""; 101 | }; 102 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | ); 106 | name = "Supporting Files"; 107 | sourceTree = ""; 108 | }; 109 | /* End PBXGroup section */ 110 | 111 | /* Begin PBXNativeTarget section */ 112 | 97C146ED1CF9000F007C117D /* Runner */ = { 113 | isa = PBXNativeTarget; 114 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 115 | buildPhases = ( 116 | 9740EEB61CF901F6004384FC /* Run Script */, 117 | 97C146EA1CF9000F007C117D /* Sources */, 118 | 97C146EB1CF9000F007C117D /* Frameworks */, 119 | 97C146EC1CF9000F007C117D /* Resources */, 120 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 121 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 122 | ); 123 | buildRules = ( 124 | ); 125 | dependencies = ( 126 | ); 127 | name = Runner; 128 | productName = Runner; 129 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 130 | productType = "com.apple.product-type.application"; 131 | }; 132 | /* End PBXNativeTarget section */ 133 | 134 | /* Begin PBXProject section */ 135 | 97C146E61CF9000F007C117D /* Project object */ = { 136 | isa = PBXProject; 137 | attributes = { 138 | LastUpgradeCheck = 1020; 139 | ORGANIZATIONNAME = ""; 140 | TargetAttributes = { 141 | 97C146ED1CF9000F007C117D = { 142 | CreatedOnToolsVersion = 7.3.1; 143 | LastSwiftMigration = 1100; 144 | }; 145 | }; 146 | }; 147 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 148 | compatibilityVersion = "Xcode 9.3"; 149 | developmentRegion = en; 150 | hasScannedForEncodings = 0; 151 | knownRegions = ( 152 | en, 153 | Base, 154 | ); 155 | mainGroup = 97C146E51CF9000F007C117D; 156 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 157 | projectDirPath = ""; 158 | projectRoot = ""; 159 | targets = ( 160 | 97C146ED1CF9000F007C117D /* Runner */, 161 | ); 162 | }; 163 | /* End PBXProject section */ 164 | 165 | /* Begin PBXResourcesBuildPhase section */ 166 | 97C146EC1CF9000F007C117D /* Resources */ = { 167 | isa = PBXResourcesBuildPhase; 168 | buildActionMask = 2147483647; 169 | files = ( 170 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 171 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 172 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 173 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 174 | ); 175 | runOnlyForDeploymentPostprocessing = 0; 176 | }; 177 | /* End PBXResourcesBuildPhase section */ 178 | 179 | /* Begin PBXShellScriptBuildPhase section */ 180 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 181 | isa = PBXShellScriptBuildPhase; 182 | buildActionMask = 2147483647; 183 | files = ( 184 | ); 185 | inputPaths = ( 186 | ); 187 | name = "Thin Binary"; 188 | outputPaths = ( 189 | ); 190 | runOnlyForDeploymentPostprocessing = 0; 191 | shellPath = /bin/sh; 192 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 193 | }; 194 | 9740EEB61CF901F6004384FC /* Run Script */ = { 195 | isa = PBXShellScriptBuildPhase; 196 | buildActionMask = 2147483647; 197 | files = ( 198 | ); 199 | inputPaths = ( 200 | ); 201 | name = "Run Script"; 202 | outputPaths = ( 203 | ); 204 | runOnlyForDeploymentPostprocessing = 0; 205 | shellPath = /bin/sh; 206 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 207 | }; 208 | /* End PBXShellScriptBuildPhase section */ 209 | 210 | /* Begin PBXSourcesBuildPhase section */ 211 | 97C146EA1CF9000F007C117D /* Sources */ = { 212 | isa = PBXSourcesBuildPhase; 213 | buildActionMask = 2147483647; 214 | files = ( 215 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 216 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 217 | ); 218 | runOnlyForDeploymentPostprocessing = 0; 219 | }; 220 | /* End PBXSourcesBuildPhase section */ 221 | 222 | /* Begin PBXVariantGroup section */ 223 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 224 | isa = PBXVariantGroup; 225 | children = ( 226 | 97C146FB1CF9000F007C117D /* Base */, 227 | ); 228 | name = Main.storyboard; 229 | sourceTree = ""; 230 | }; 231 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 232 | isa = PBXVariantGroup; 233 | children = ( 234 | 97C147001CF9000F007C117D /* Base */, 235 | ); 236 | name = LaunchScreen.storyboard; 237 | sourceTree = ""; 238 | }; 239 | /* End PBXVariantGroup section */ 240 | 241 | /* Begin XCBuildConfiguration section */ 242 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 243 | isa = XCBuildConfiguration; 244 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 245 | buildSettings = { 246 | ALWAYS_SEARCH_USER_PATHS = NO; 247 | CLANG_ANALYZER_NONNULL = YES; 248 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 249 | CLANG_CXX_LIBRARY = "libc++"; 250 | CLANG_ENABLE_MODULES = YES; 251 | CLANG_ENABLE_OBJC_ARC = YES; 252 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 253 | CLANG_WARN_BOOL_CONVERSION = YES; 254 | CLANG_WARN_COMMA = YES; 255 | CLANG_WARN_CONSTANT_CONVERSION = YES; 256 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 257 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 258 | CLANG_WARN_EMPTY_BODY = YES; 259 | CLANG_WARN_ENUM_CONVERSION = YES; 260 | CLANG_WARN_INFINITE_RECURSION = YES; 261 | CLANG_WARN_INT_CONVERSION = YES; 262 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 263 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 264 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 265 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 266 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 267 | CLANG_WARN_STRICT_PROTOTYPES = YES; 268 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 269 | CLANG_WARN_UNREACHABLE_CODE = YES; 270 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 271 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 272 | COPY_PHASE_STRIP = NO; 273 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 274 | ENABLE_NS_ASSERTIONS = NO; 275 | ENABLE_STRICT_OBJC_MSGSEND = YES; 276 | GCC_C_LANGUAGE_STANDARD = gnu99; 277 | GCC_NO_COMMON_BLOCKS = YES; 278 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 279 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 280 | GCC_WARN_UNDECLARED_SELECTOR = YES; 281 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 282 | GCC_WARN_UNUSED_FUNCTION = YES; 283 | GCC_WARN_UNUSED_VARIABLE = YES; 284 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 285 | MTL_ENABLE_DEBUG_INFO = NO; 286 | SDKROOT = iphoneos; 287 | SUPPORTED_PLATFORMS = iphoneos; 288 | TARGETED_DEVICE_FAMILY = "1,2"; 289 | VALIDATE_PRODUCT = YES; 290 | }; 291 | name = Profile; 292 | }; 293 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 294 | isa = XCBuildConfiguration; 295 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 296 | buildSettings = { 297 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 298 | CLANG_ENABLE_MODULES = YES; 299 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 300 | ENABLE_BITCODE = NO; 301 | FRAMEWORK_SEARCH_PATHS = ( 302 | "$(inherited)", 303 | "$(PROJECT_DIR)/Flutter", 304 | ); 305 | INFOPLIST_FILE = Runner/Info.plist; 306 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 307 | LIBRARY_SEARCH_PATHS = ( 308 | "$(inherited)", 309 | "$(PROJECT_DIR)/Flutter", 310 | ); 311 | PRODUCT_BUNDLE_IDENTIFIER = rajwrita.noted; 312 | PRODUCT_NAME = "$(TARGET_NAME)"; 313 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 314 | SWIFT_VERSION = 5.0; 315 | VERSIONING_SYSTEM = "apple-generic"; 316 | }; 317 | name = Profile; 318 | }; 319 | 97C147031CF9000F007C117D /* Debug */ = { 320 | isa = XCBuildConfiguration; 321 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 322 | buildSettings = { 323 | ALWAYS_SEARCH_USER_PATHS = NO; 324 | CLANG_ANALYZER_NONNULL = YES; 325 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 326 | CLANG_CXX_LIBRARY = "libc++"; 327 | CLANG_ENABLE_MODULES = YES; 328 | CLANG_ENABLE_OBJC_ARC = YES; 329 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 330 | CLANG_WARN_BOOL_CONVERSION = YES; 331 | CLANG_WARN_COMMA = YES; 332 | CLANG_WARN_CONSTANT_CONVERSION = YES; 333 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 334 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 335 | CLANG_WARN_EMPTY_BODY = YES; 336 | CLANG_WARN_ENUM_CONVERSION = YES; 337 | CLANG_WARN_INFINITE_RECURSION = YES; 338 | CLANG_WARN_INT_CONVERSION = YES; 339 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 340 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 341 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 342 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 343 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 344 | CLANG_WARN_STRICT_PROTOTYPES = YES; 345 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 346 | CLANG_WARN_UNREACHABLE_CODE = YES; 347 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 348 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 349 | COPY_PHASE_STRIP = NO; 350 | DEBUG_INFORMATION_FORMAT = dwarf; 351 | ENABLE_STRICT_OBJC_MSGSEND = YES; 352 | ENABLE_TESTABILITY = YES; 353 | GCC_C_LANGUAGE_STANDARD = gnu99; 354 | GCC_DYNAMIC_NO_PIC = NO; 355 | GCC_NO_COMMON_BLOCKS = YES; 356 | GCC_OPTIMIZATION_LEVEL = 0; 357 | GCC_PREPROCESSOR_DEFINITIONS = ( 358 | "DEBUG=1", 359 | "$(inherited)", 360 | ); 361 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 362 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 363 | GCC_WARN_UNDECLARED_SELECTOR = YES; 364 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 365 | GCC_WARN_UNUSED_FUNCTION = YES; 366 | GCC_WARN_UNUSED_VARIABLE = YES; 367 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 368 | MTL_ENABLE_DEBUG_INFO = YES; 369 | ONLY_ACTIVE_ARCH = YES; 370 | SDKROOT = iphoneos; 371 | TARGETED_DEVICE_FAMILY = "1,2"; 372 | }; 373 | name = Debug; 374 | }; 375 | 97C147041CF9000F007C117D /* Release */ = { 376 | isa = XCBuildConfiguration; 377 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 378 | buildSettings = { 379 | ALWAYS_SEARCH_USER_PATHS = NO; 380 | CLANG_ANALYZER_NONNULL = YES; 381 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 382 | CLANG_CXX_LIBRARY = "libc++"; 383 | CLANG_ENABLE_MODULES = YES; 384 | CLANG_ENABLE_OBJC_ARC = YES; 385 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 386 | CLANG_WARN_BOOL_CONVERSION = YES; 387 | CLANG_WARN_COMMA = YES; 388 | CLANG_WARN_CONSTANT_CONVERSION = YES; 389 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 390 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 391 | CLANG_WARN_EMPTY_BODY = YES; 392 | CLANG_WARN_ENUM_CONVERSION = YES; 393 | CLANG_WARN_INFINITE_RECURSION = YES; 394 | CLANG_WARN_INT_CONVERSION = YES; 395 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 396 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 397 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 398 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 399 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 400 | CLANG_WARN_STRICT_PROTOTYPES = YES; 401 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 402 | CLANG_WARN_UNREACHABLE_CODE = YES; 403 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 404 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 405 | COPY_PHASE_STRIP = NO; 406 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 407 | ENABLE_NS_ASSERTIONS = NO; 408 | ENABLE_STRICT_OBJC_MSGSEND = YES; 409 | GCC_C_LANGUAGE_STANDARD = gnu99; 410 | GCC_NO_COMMON_BLOCKS = YES; 411 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 412 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 413 | GCC_WARN_UNDECLARED_SELECTOR = YES; 414 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 415 | GCC_WARN_UNUSED_FUNCTION = YES; 416 | GCC_WARN_UNUSED_VARIABLE = YES; 417 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 418 | MTL_ENABLE_DEBUG_INFO = NO; 419 | SDKROOT = iphoneos; 420 | SUPPORTED_PLATFORMS = iphoneos; 421 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 422 | TARGETED_DEVICE_FAMILY = "1,2"; 423 | VALIDATE_PRODUCT = YES; 424 | }; 425 | name = Release; 426 | }; 427 | 97C147061CF9000F007C117D /* Debug */ = { 428 | isa = XCBuildConfiguration; 429 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 430 | buildSettings = { 431 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 432 | CLANG_ENABLE_MODULES = YES; 433 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 434 | ENABLE_BITCODE = NO; 435 | FRAMEWORK_SEARCH_PATHS = ( 436 | "$(inherited)", 437 | "$(PROJECT_DIR)/Flutter", 438 | ); 439 | INFOPLIST_FILE = Runner/Info.plist; 440 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 441 | LIBRARY_SEARCH_PATHS = ( 442 | "$(inherited)", 443 | "$(PROJECT_DIR)/Flutter", 444 | ); 445 | PRODUCT_BUNDLE_IDENTIFIER = rajwrita.noted; 446 | PRODUCT_NAME = "$(TARGET_NAME)"; 447 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 448 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 449 | SWIFT_VERSION = 5.0; 450 | VERSIONING_SYSTEM = "apple-generic"; 451 | }; 452 | name = Debug; 453 | }; 454 | 97C147071CF9000F007C117D /* Release */ = { 455 | isa = XCBuildConfiguration; 456 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 457 | buildSettings = { 458 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 459 | CLANG_ENABLE_MODULES = YES; 460 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 461 | ENABLE_BITCODE = NO; 462 | FRAMEWORK_SEARCH_PATHS = ( 463 | "$(inherited)", 464 | "$(PROJECT_DIR)/Flutter", 465 | ); 466 | INFOPLIST_FILE = Runner/Info.plist; 467 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 468 | LIBRARY_SEARCH_PATHS = ( 469 | "$(inherited)", 470 | "$(PROJECT_DIR)/Flutter", 471 | ); 472 | PRODUCT_BUNDLE_IDENTIFIER = rajwrita.noted; 473 | PRODUCT_NAME = "$(TARGET_NAME)"; 474 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 475 | SWIFT_VERSION = 5.0; 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 | --------------------------------------------------------------------------------