├── Anshuman └── Lib │ ├── Calculator Game │ └── lib │ │ └── main.dart │ └── main.dart ├── Ayushi ├── first_app │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── my_app │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart └── functioning calcy │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── cal_app │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── CharuSachdeva ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── calculator │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── DAKSH.D └── PROJECT 1 │ ├── DAY 1 │ ├── SCREEN Shot │ │ └── Screenshot (77).png │ └── main.dart │ ├── DAY 2 │ ├── SCREEN Shot │ │ └── Screenshot (95).png │ ├── assets │ │ └── 1.jpg │ └── main.dart │ ├── DAY 3 │ └── main.dart │ └── DAY 4 │ └── main.dart ├── Harshit ├── Calculator │ └── calculator │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── calculator │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ └── widget_test.dart └── my_app │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── my_app │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── Mayank0038 ├── Calculator │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── my_calculator │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart └── portfolio │ ├── .gitignore │ ├── .metadata │ ├── .vscode │ └── launch.json │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── my_portfolio │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── Prateek ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── app │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── me.jpg ├── fonts │ ├── AmaticSC.ttf │ ├── Bitter.ttf │ └── Roboto.ttf ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock └── pubspec.yaml ├── README.md ├── Tanishq_Singla ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── tanishq_singla │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── images │ └── offic.jpg ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock └── pubspec.yaml ├── Vivek ├── MyApp │ ├── .gitignore │ ├── .metadata │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── myapp │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── fonts │ │ ├── Raleway-Italic.ttf │ │ ├── Raleway-Regular.ttf │ │ ├── RobotoMono-Bold.ttf │ │ └── RobotoMono-Regular.ttf │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart └── calculator │ ├── .gitignore │ ├── .metadata │ ├── .vscode │ └── launch.json │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── calculator │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── Yashank ├── myapp │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── myapp │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart └── mycalculator │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── mycalculator │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── charu ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── charu │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── charu0012 ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── calculator │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── ishandeveloper ├── .gitignore ├── .metadata ├── README.md ├── Screenshots │ └── 1.jpg ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── ishandeveloper │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── fonts │ │ ├── OFL.txt │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-BlackItalic.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-BoldItalic.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-ExtraLightItalic.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-SemiBoldItalic.ttf │ │ ├── Poppins-Thin.ttf │ │ └── Poppins-ThinItalic.ttf ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── main.dart │ ├── views │ │ └── home.dart │ └── widgets │ │ └── buttons.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── main.dart ├── nikita Aggarwal └── main.dart ├── nikitaagg ├── .gitignore ├── .metadata ├── .packages ├── README.md ├── calculator ├── calculator.iml ├── main.dart ├── pubspec.lock └── pubspec.yaml ├── sample images ├── cal1.jpg ├── cal2.jpg ├── cal3.jpg ├── fol1.jpg ├── fol2.jpg └── fol3.jpg └── sidharath0367 ├── calculator ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── calculator │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart └── myportfolio ├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── myportfolio1 │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── asset └── images │ └── lake.jpg ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /Anshuman/Lib/Calculator Game/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Anshuman/Lib/Calculator Game/lib/main.dart -------------------------------------------------------------------------------- /Anshuman/Lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Anshuman/Lib/main.dart -------------------------------------------------------------------------------- /Ayushi/first_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/.gitignore -------------------------------------------------------------------------------- /Ayushi/first_app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/.metadata -------------------------------------------------------------------------------- /Ayushi/first_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/README.md -------------------------------------------------------------------------------- /Ayushi/first_app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/.gitignore -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/build.gradle -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ayushi/first_app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Ayushi/first_app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/build.gradle -------------------------------------------------------------------------------- /Ayushi/first_app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/gradle.properties -------------------------------------------------------------------------------- /Ayushi/first_app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ayushi/first_app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/android/settings.gradle -------------------------------------------------------------------------------- /Ayushi/first_app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/.gitignore -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Ayushi/first_app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Ayushi/first_app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/lib/main.dart -------------------------------------------------------------------------------- /Ayushi/first_app/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/pubspec.lock -------------------------------------------------------------------------------- /Ayushi/first_app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/pubspec.yaml -------------------------------------------------------------------------------- /Ayushi/first_app/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/first_app/test/widget_test.dart -------------------------------------------------------------------------------- /Ayushi/functioning calcy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/.gitignore -------------------------------------------------------------------------------- /Ayushi/functioning calcy/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/.metadata -------------------------------------------------------------------------------- /Ayushi/functioning calcy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/README.md -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/.gitignore -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/app/build.gradle -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/build.gradle -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/gradle.properties -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ayushi/functioning calcy/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/android/settings.gradle -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/ios/.gitignore -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Ayushi/functioning calcy/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Ayushi/functioning calcy/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/lib/main.dart -------------------------------------------------------------------------------- /Ayushi/functioning calcy/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/pubspec.lock -------------------------------------------------------------------------------- /Ayushi/functioning calcy/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/pubspec.yaml -------------------------------------------------------------------------------- /Ayushi/functioning calcy/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Ayushi/functioning calcy/test/widget_test.dart -------------------------------------------------------------------------------- /CharuSachdeva/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/.gitignore -------------------------------------------------------------------------------- /CharuSachdeva/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/.metadata -------------------------------------------------------------------------------- /CharuSachdeva/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/README.md -------------------------------------------------------------------------------- /CharuSachdeva/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/.gitignore -------------------------------------------------------------------------------- /CharuSachdeva/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/build.gradle -------------------------------------------------------------------------------- /CharuSachdeva/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /CharuSachdeva/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /CharuSachdeva/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /CharuSachdeva/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CharuSachdeva/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CharuSachdeva/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CharuSachdeva/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CharuSachdeva/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CharuSachdeva/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /CharuSachdeva/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /CharuSachdeva/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/build.gradle -------------------------------------------------------------------------------- /CharuSachdeva/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/gradle.properties -------------------------------------------------------------------------------- /CharuSachdeva/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /CharuSachdeva/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/android/settings.gradle -------------------------------------------------------------------------------- /CharuSachdeva/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/.gitignore -------------------------------------------------------------------------------- /CharuSachdeva/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /CharuSachdeva/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /CharuSachdeva/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/ios/Runner/Info.plist -------------------------------------------------------------------------------- /CharuSachdeva/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /CharuSachdeva/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/lib/main.dart -------------------------------------------------------------------------------- /CharuSachdeva/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/pubspec.lock -------------------------------------------------------------------------------- /CharuSachdeva/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/pubspec.yaml -------------------------------------------------------------------------------- /CharuSachdeva/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/CharuSachdeva/test/widget_test.dart -------------------------------------------------------------------------------- /DAKSH.D/PROJECT 1/DAY 1/SCREEN Shot/Screenshot (77).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/DAKSH.D/PROJECT 1/DAY 1/SCREEN Shot/Screenshot (77).png -------------------------------------------------------------------------------- /DAKSH.D/PROJECT 1/DAY 1/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/DAKSH.D/PROJECT 1/DAY 1/main.dart -------------------------------------------------------------------------------- /DAKSH.D/PROJECT 1/DAY 2/SCREEN Shot/Screenshot (95).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/DAKSH.D/PROJECT 1/DAY 2/SCREEN Shot/Screenshot (95).png -------------------------------------------------------------------------------- /DAKSH.D/PROJECT 1/DAY 2/assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/DAKSH.D/PROJECT 1/DAY 2/assets/1.jpg -------------------------------------------------------------------------------- /DAKSH.D/PROJECT 1/DAY 2/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/DAKSH.D/PROJECT 1/DAY 2/main.dart -------------------------------------------------------------------------------- /DAKSH.D/PROJECT 1/DAY 3/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/DAKSH.D/PROJECT 1/DAY 3/main.dart -------------------------------------------------------------------------------- /DAKSH.D/PROJECT 1/DAY 4/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/DAKSH.D/PROJECT 1/DAY 4/main.dart -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/.gitignore -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/.metadata -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/README.md -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/android/.gitignore -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/android/app/build.gradle -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/android/build.gradle -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/android/gradle.properties -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/android/settings.gradle -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/ios/.gitignore -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/lib/main.dart -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/pubspec.lock -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/pubspec.yaml -------------------------------------------------------------------------------- /Harshit/Calculator/calculator/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/Calculator/calculator/test/widget_test.dart -------------------------------------------------------------------------------- /Harshit/my_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/.gitignore -------------------------------------------------------------------------------- /Harshit/my_app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/.metadata -------------------------------------------------------------------------------- /Harshit/my_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/README.md -------------------------------------------------------------------------------- /Harshit/my_app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/.gitignore -------------------------------------------------------------------------------- /Harshit/my_app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/build.gradle -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/main/kotlin/com/example/my_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/main/kotlin/com/example/my_app/MainActivity.kt -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Harshit/my_app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Harshit/my_app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/build.gradle -------------------------------------------------------------------------------- /Harshit/my_app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/gradle.properties -------------------------------------------------------------------------------- /Harshit/my_app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Harshit/my_app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/android/settings.gradle -------------------------------------------------------------------------------- /Harshit/my_app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/.gitignore -------------------------------------------------------------------------------- /Harshit/my_app/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Harshit/my_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Harshit/my_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Harshit/my_app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Harshit/my_app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/lib/main.dart -------------------------------------------------------------------------------- /Harshit/my_app/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/pubspec.lock -------------------------------------------------------------------------------- /Harshit/my_app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/pubspec.yaml -------------------------------------------------------------------------------- /Harshit/my_app/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Harshit/my_app/test/widget_test.dart -------------------------------------------------------------------------------- /Mayank0038/Calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/.gitignore -------------------------------------------------------------------------------- /Mayank0038/Calculator/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/.metadata -------------------------------------------------------------------------------- /Mayank0038/Calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/README.md -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/.gitignore -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/build.gradle -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/build.gradle -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/gradle.properties -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Mayank0038/Calculator/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/android/settings.gradle -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/ios/.gitignore -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Mayank0038/Calculator/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Mayank0038/Calculator/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/lib/main.dart -------------------------------------------------------------------------------- /Mayank0038/Calculator/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/pubspec.lock -------------------------------------------------------------------------------- /Mayank0038/Calculator/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/pubspec.yaml -------------------------------------------------------------------------------- /Mayank0038/Calculator/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/Calculator/test/widget_test.dart -------------------------------------------------------------------------------- /Mayank0038/portfolio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/.gitignore -------------------------------------------------------------------------------- /Mayank0038/portfolio/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/.metadata -------------------------------------------------------------------------------- /Mayank0038/portfolio/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/.vscode/launch.json -------------------------------------------------------------------------------- /Mayank0038/portfolio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/README.md -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/.gitignore -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/build.gradle -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/build.gradle -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/gradle.properties -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Mayank0038/portfolio/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/android/settings.gradle -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/ios/.gitignore -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Mayank0038/portfolio/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Mayank0038/portfolio/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/lib/main.dart -------------------------------------------------------------------------------- /Mayank0038/portfolio/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/pubspec.lock -------------------------------------------------------------------------------- /Mayank0038/portfolio/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/pubspec.yaml -------------------------------------------------------------------------------- /Mayank0038/portfolio/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Mayank0038/portfolio/test/widget_test.dart -------------------------------------------------------------------------------- /Prateek/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/.gitignore -------------------------------------------------------------------------------- /Prateek/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/.metadata -------------------------------------------------------------------------------- /Prateek/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/.vscode/launch.json -------------------------------------------------------------------------------- /Prateek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/README.md -------------------------------------------------------------------------------- /Prateek/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/.gitignore -------------------------------------------------------------------------------- /Prateek/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/build.gradle -------------------------------------------------------------------------------- /Prateek/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Prateek/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Prateek/android/app/src/main/kotlin/com/example/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/main/kotlin/com/example/app/MainActivity.kt -------------------------------------------------------------------------------- /Prateek/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Prateek/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Prateek/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Prateek/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Prateek/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Prateek/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Prateek/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Prateek/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Prateek/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/build.gradle -------------------------------------------------------------------------------- /Prateek/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/gradle.properties -------------------------------------------------------------------------------- /Prateek/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Prateek/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/android/settings.gradle -------------------------------------------------------------------------------- /Prateek/assets/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/assets/me.jpg -------------------------------------------------------------------------------- /Prateek/fonts/AmaticSC.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/fonts/AmaticSC.ttf -------------------------------------------------------------------------------- /Prateek/fonts/Bitter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/fonts/Bitter.ttf -------------------------------------------------------------------------------- /Prateek/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/fonts/Roboto.ttf -------------------------------------------------------------------------------- /Prateek/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/.gitignore -------------------------------------------------------------------------------- /Prateek/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Prateek/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Prateek/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Prateek/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Prateek/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Prateek/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Prateek/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Prateek/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Prateek/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Prateek/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Prateek/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Prateek/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Prateek/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Prateek/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/lib/main.dart -------------------------------------------------------------------------------- /Prateek/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/pubspec.lock -------------------------------------------------------------------------------- /Prateek/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Prateek/pubspec.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/README.md -------------------------------------------------------------------------------- /Tanishq_Singla/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/.gitignore -------------------------------------------------------------------------------- /Tanishq_Singla/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/.metadata -------------------------------------------------------------------------------- /Tanishq_Singla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/README.md -------------------------------------------------------------------------------- /Tanishq_Singla/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/.gitignore -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/build.gradle -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Tanishq_Singla/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Tanishq_Singla/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/build.gradle -------------------------------------------------------------------------------- /Tanishq_Singla/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/gradle.properties -------------------------------------------------------------------------------- /Tanishq_Singla/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Tanishq_Singla/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/android/settings.gradle -------------------------------------------------------------------------------- /Tanishq_Singla/images/offic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/images/offic.jpg -------------------------------------------------------------------------------- /Tanishq_Singla/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/.gitignore -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Tanishq_Singla/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Tanishq_Singla/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/lib/main.dart -------------------------------------------------------------------------------- /Tanishq_Singla/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/pubspec.lock -------------------------------------------------------------------------------- /Tanishq_Singla/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Tanishq_Singla/pubspec.yaml -------------------------------------------------------------------------------- /Vivek/MyApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/.gitignore -------------------------------------------------------------------------------- /Vivek/MyApp/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/.metadata -------------------------------------------------------------------------------- /Vivek/MyApp/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/.vscode/launch.json -------------------------------------------------------------------------------- /Vivek/MyApp/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /Vivek/MyApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/README.md -------------------------------------------------------------------------------- /Vivek/MyApp/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/.gitignore -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/build.gradle -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/main/kotlin/com/example/myapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/main/kotlin/com/example/myapp/MainActivity.kt -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Vivek/MyApp/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Vivek/MyApp/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/build.gradle -------------------------------------------------------------------------------- /Vivek/MyApp/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/gradle.properties -------------------------------------------------------------------------------- /Vivek/MyApp/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Vivek/MyApp/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/android/settings.gradle -------------------------------------------------------------------------------- /Vivek/MyApp/fonts/Raleway-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/fonts/Raleway-Italic.ttf -------------------------------------------------------------------------------- /Vivek/MyApp/fonts/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/fonts/Raleway-Regular.ttf -------------------------------------------------------------------------------- /Vivek/MyApp/fonts/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/fonts/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /Vivek/MyApp/fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /Vivek/MyApp/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/.gitignore -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Vivek/MyApp/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Vivek/MyApp/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/lib/main.dart -------------------------------------------------------------------------------- /Vivek/MyApp/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/pubspec.lock -------------------------------------------------------------------------------- /Vivek/MyApp/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/pubspec.yaml -------------------------------------------------------------------------------- /Vivek/MyApp/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/MyApp/test/widget_test.dart -------------------------------------------------------------------------------- /Vivek/calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/.gitignore -------------------------------------------------------------------------------- /Vivek/calculator/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/.metadata -------------------------------------------------------------------------------- /Vivek/calculator/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/.vscode/launch.json -------------------------------------------------------------------------------- /Vivek/calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/README.md -------------------------------------------------------------------------------- /Vivek/calculator/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/.gitignore -------------------------------------------------------------------------------- /Vivek/calculator/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/build.gradle -------------------------------------------------------------------------------- /Vivek/calculator/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Vivek/calculator/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Vivek/calculator/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Vivek/calculator/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Vivek/calculator/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Vivek/calculator/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Vivek/calculator/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Vivek/calculator/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Vivek/calculator/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Vivek/calculator/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Vivek/calculator/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/build.gradle -------------------------------------------------------------------------------- /Vivek/calculator/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/gradle.properties -------------------------------------------------------------------------------- /Vivek/calculator/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Vivek/calculator/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/android/settings.gradle -------------------------------------------------------------------------------- /Vivek/calculator/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/.gitignore -------------------------------------------------------------------------------- /Vivek/calculator/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Vivek/calculator/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Vivek/calculator/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Vivek/calculator/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Vivek/calculator/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/lib/main.dart -------------------------------------------------------------------------------- /Vivek/calculator/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/pubspec.lock -------------------------------------------------------------------------------- /Vivek/calculator/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/pubspec.yaml -------------------------------------------------------------------------------- /Vivek/calculator/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Vivek/calculator/test/widget_test.dart -------------------------------------------------------------------------------- /Yashank/myapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/.gitignore -------------------------------------------------------------------------------- /Yashank/myapp/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/.metadata -------------------------------------------------------------------------------- /Yashank/myapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/README.md -------------------------------------------------------------------------------- /Yashank/myapp/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/.gitignore -------------------------------------------------------------------------------- /Yashank/myapp/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/build.gradle -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/main/kotlin/com/example/myapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/main/kotlin/com/example/myapp/MainActivity.kt -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Yashank/myapp/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Yashank/myapp/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/build.gradle -------------------------------------------------------------------------------- /Yashank/myapp/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/gradle.properties -------------------------------------------------------------------------------- /Yashank/myapp/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Yashank/myapp/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/android/settings.gradle -------------------------------------------------------------------------------- /Yashank/myapp/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/.gitignore -------------------------------------------------------------------------------- /Yashank/myapp/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Yashank/myapp/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Yashank/myapp/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Yashank/myapp/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Yashank/myapp/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/lib/main.dart -------------------------------------------------------------------------------- /Yashank/myapp/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/pubspec.lock -------------------------------------------------------------------------------- /Yashank/myapp/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/pubspec.yaml -------------------------------------------------------------------------------- /Yashank/myapp/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/myapp/test/widget_test.dart -------------------------------------------------------------------------------- /Yashank/mycalculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/.gitignore -------------------------------------------------------------------------------- /Yashank/mycalculator/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/.metadata -------------------------------------------------------------------------------- /Yashank/mycalculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/README.md -------------------------------------------------------------------------------- /Yashank/mycalculator/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/.gitignore -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/build.gradle -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Yashank/mycalculator/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Yashank/mycalculator/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/build.gradle -------------------------------------------------------------------------------- /Yashank/mycalculator/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/gradle.properties -------------------------------------------------------------------------------- /Yashank/mycalculator/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Yashank/mycalculator/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/android/settings.gradle -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/ios/.gitignore -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Yashank/mycalculator/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Yashank/mycalculator/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/lib/main.dart -------------------------------------------------------------------------------- /Yashank/mycalculator/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/pubspec.lock -------------------------------------------------------------------------------- /Yashank/mycalculator/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/pubspec.yaml -------------------------------------------------------------------------------- /Yashank/mycalculator/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/Yashank/mycalculator/test/widget_test.dart -------------------------------------------------------------------------------- /charu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/.gitignore -------------------------------------------------------------------------------- /charu/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/.metadata -------------------------------------------------------------------------------- /charu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/README.md -------------------------------------------------------------------------------- /charu/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/.gitignore -------------------------------------------------------------------------------- /charu/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/build.gradle -------------------------------------------------------------------------------- /charu/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /charu/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /charu/android/app/src/main/kotlin/com/example/charu/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/main/kotlin/com/example/charu/MainActivity.kt -------------------------------------------------------------------------------- /charu/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /charu/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /charu/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /charu/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /charu/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /charu/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /charu/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /charu/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /charu/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/build.gradle -------------------------------------------------------------------------------- /charu/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/gradle.properties -------------------------------------------------------------------------------- /charu/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /charu/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/android/settings.gradle -------------------------------------------------------------------------------- /charu/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/.gitignore -------------------------------------------------------------------------------- /charu/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /charu/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /charu/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /charu/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /charu/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /charu/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /charu/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /charu/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /charu/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /charu/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /charu/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /charu/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/ios/Runner/Info.plist -------------------------------------------------------------------------------- /charu/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /charu/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/lib/main.dart -------------------------------------------------------------------------------- /charu/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/pubspec.lock -------------------------------------------------------------------------------- /charu/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/pubspec.yaml -------------------------------------------------------------------------------- /charu/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu/test/widget_test.dart -------------------------------------------------------------------------------- /charu0012/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/.gitignore -------------------------------------------------------------------------------- /charu0012/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/.metadata -------------------------------------------------------------------------------- /charu0012/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/README.md -------------------------------------------------------------------------------- /charu0012/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/.gitignore -------------------------------------------------------------------------------- /charu0012/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/build.gradle -------------------------------------------------------------------------------- /charu0012/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /charu0012/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /charu0012/android/app/src/main/kotlin/com/example/calculator/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/main/kotlin/com/example/calculator/MainActivity.kt -------------------------------------------------------------------------------- /charu0012/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /charu0012/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /charu0012/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /charu0012/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /charu0012/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /charu0012/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /charu0012/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /charu0012/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /charu0012/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/build.gradle -------------------------------------------------------------------------------- /charu0012/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/gradle.properties -------------------------------------------------------------------------------- /charu0012/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /charu0012/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/android/settings.gradle -------------------------------------------------------------------------------- /charu0012/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/.gitignore -------------------------------------------------------------------------------- /charu0012/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /charu0012/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /charu0012/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /charu0012/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /charu0012/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /charu0012/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /charu0012/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /charu0012/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /charu0012/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /charu0012/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /charu0012/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /charu0012/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /charu0012/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /charu0012/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /charu0012/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /charu0012/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /charu0012/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/ios/Runner/Info.plist -------------------------------------------------------------------------------- /charu0012/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /charu0012/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/lib/main.dart -------------------------------------------------------------------------------- /charu0012/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/pubspec.lock -------------------------------------------------------------------------------- /charu0012/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/pubspec.yaml -------------------------------------------------------------------------------- /charu0012/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/charu0012/test/widget_test.dart -------------------------------------------------------------------------------- /ishandeveloper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/.gitignore -------------------------------------------------------------------------------- /ishandeveloper/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/.metadata -------------------------------------------------------------------------------- /ishandeveloper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/README.md -------------------------------------------------------------------------------- /ishandeveloper/Screenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/Screenshots/1.jpg -------------------------------------------------------------------------------- /ishandeveloper/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/.gitignore -------------------------------------------------------------------------------- /ishandeveloper/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/build.gradle -------------------------------------------------------------------------------- /ishandeveloper/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /ishandeveloper/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ishandeveloper/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /ishandeveloper/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ishandeveloper/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ishandeveloper/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ishandeveloper/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ishandeveloper/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ishandeveloper/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /ishandeveloper/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /ishandeveloper/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/build.gradle -------------------------------------------------------------------------------- /ishandeveloper/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/gradle.properties -------------------------------------------------------------------------------- /ishandeveloper/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ishandeveloper/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/android/settings.gradle -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/OFL.txt -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-Black.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-Italic.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /ishandeveloper/assets/fonts/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/assets/fonts/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /ishandeveloper/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/.gitignore -------------------------------------------------------------------------------- /ishandeveloper/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ishandeveloper/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ishandeveloper/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ishandeveloper/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ishandeveloper/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/lib/main.dart -------------------------------------------------------------------------------- /ishandeveloper/lib/views/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/lib/views/home.dart -------------------------------------------------------------------------------- /ishandeveloper/lib/widgets/buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/lib/widgets/buttons.dart -------------------------------------------------------------------------------- /ishandeveloper/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/pubspec.lock -------------------------------------------------------------------------------- /ishandeveloper/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/pubspec.yaml -------------------------------------------------------------------------------- /ishandeveloper/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/test/widget_test.dart -------------------------------------------------------------------------------- /ishandeveloper/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/web/favicon.png -------------------------------------------------------------------------------- /ishandeveloper/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/web/icons/Icon-192.png -------------------------------------------------------------------------------- /ishandeveloper/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/web/icons/Icon-512.png -------------------------------------------------------------------------------- /ishandeveloper/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/web/index.html -------------------------------------------------------------------------------- /ishandeveloper/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/ishandeveloper/web/manifest.json -------------------------------------------------------------------------------- /main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/main.dart -------------------------------------------------------------------------------- /nikita Aggarwal/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/nikita Aggarwal/main.dart -------------------------------------------------------------------------------- /nikitaagg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/nikitaagg/.gitignore -------------------------------------------------------------------------------- /nikitaagg/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/nikitaagg/.metadata -------------------------------------------------------------------------------- /nikitaagg/.packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/nikitaagg/.packages -------------------------------------------------------------------------------- /nikitaagg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/nikitaagg/README.md -------------------------------------------------------------------------------- /nikitaagg/calculator: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nikitaagg/calculator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/nikitaagg/calculator.iml -------------------------------------------------------------------------------- /nikitaagg/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/nikitaagg/main.dart -------------------------------------------------------------------------------- /nikitaagg/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/nikitaagg/pubspec.lock -------------------------------------------------------------------------------- /nikitaagg/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/nikitaagg/pubspec.yaml -------------------------------------------------------------------------------- /sample images/cal1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sample images/cal1.jpg -------------------------------------------------------------------------------- /sample images/cal2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sample images/cal2.jpg -------------------------------------------------------------------------------- /sample images/cal3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sample images/cal3.jpg -------------------------------------------------------------------------------- /sample images/fol1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sample images/fol1.jpg -------------------------------------------------------------------------------- /sample images/fol2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sample images/fol2.jpg -------------------------------------------------------------------------------- /sample images/fol3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sample images/fol3.jpg -------------------------------------------------------------------------------- /sidharath0367/calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/.gitignore -------------------------------------------------------------------------------- /sidharath0367/calculator/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/.metadata -------------------------------------------------------------------------------- /sidharath0367/calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/README.md -------------------------------------------------------------------------------- /sidharath0367/calculator/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/android/.gitignore -------------------------------------------------------------------------------- /sidharath0367/calculator/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/android/app/build.gradle -------------------------------------------------------------------------------- /sidharath0367/calculator/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /sidharath0367/calculator/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sidharath0367/calculator/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sidharath0367/calculator/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /sidharath0367/calculator/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/android/build.gradle -------------------------------------------------------------------------------- /sidharath0367/calculator/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/android/gradle.properties -------------------------------------------------------------------------------- /sidharath0367/calculator/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /sidharath0367/calculator/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/android/settings.gradle -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/ios/.gitignore -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/ios/Runner/Info.plist -------------------------------------------------------------------------------- /sidharath0367/calculator/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /sidharath0367/calculator/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/lib/main.dart -------------------------------------------------------------------------------- /sidharath0367/calculator/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/pubspec.lock -------------------------------------------------------------------------------- /sidharath0367/calculator/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/pubspec.yaml -------------------------------------------------------------------------------- /sidharath0367/calculator/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/calculator/test/widget_test.dart -------------------------------------------------------------------------------- /sidharath0367/myportfolio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/.gitignore -------------------------------------------------------------------------------- /sidharath0367/myportfolio/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/.metadata -------------------------------------------------------------------------------- /sidharath0367/myportfolio/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/.vscode/launch.json -------------------------------------------------------------------------------- /sidharath0367/myportfolio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/README.md -------------------------------------------------------------------------------- /sidharath0367/myportfolio/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/android/.gitignore -------------------------------------------------------------------------------- /sidharath0367/myportfolio/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/android/app/build.gradle -------------------------------------------------------------------------------- /sidharath0367/myportfolio/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /sidharath0367/myportfolio/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sidharath0367/myportfolio/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sidharath0367/myportfolio/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /sidharath0367/myportfolio/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/android/build.gradle -------------------------------------------------------------------------------- /sidharath0367/myportfolio/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/android/gradle.properties -------------------------------------------------------------------------------- /sidharath0367/myportfolio/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /sidharath0367/myportfolio/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/android/settings.gradle -------------------------------------------------------------------------------- /sidharath0367/myportfolio/asset/images/lake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/asset/images/lake.jpg -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/ios/.gitignore -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/ios/Runner/Info.plist -------------------------------------------------------------------------------- /sidharath0367/myportfolio/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /sidharath0367/myportfolio/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/lib/main.dart -------------------------------------------------------------------------------- /sidharath0367/myportfolio/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/pubspec.lock -------------------------------------------------------------------------------- /sidharath0367/myportfolio/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/pubspec.yaml -------------------------------------------------------------------------------- /sidharath0367/myportfolio/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackForValley/Flutter-101/HEAD/sidharath0367/myportfolio/test/widget_test.dart --------------------------------------------------------------------------------