├── .flutter-plugins-dependencies ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── main.yml ├── .gitignore ├── .metadata ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── android ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── launcher_icon.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── credits │ └── urmil.png ├── flare │ └── card.flr ├── fonts │ ├── Quicksand │ │ ├── OFL.txt │ │ ├── Quicksand-Bold.ttf │ │ ├── Quicksand-Light.ttf │ │ ├── Quicksand-Medium.ttf │ │ └── Quicksand-Regular.ttf │ ├── RobotoMono │ │ ├── LICENSE.txt │ │ ├── RobotoMono-Bold.ttf │ │ ├── RobotoMono-BoldItalic.ttf │ │ ├── RobotoMono-Italic.ttf │ │ ├── RobotoMono-Light.ttf │ │ ├── RobotoMono-LightItalic.ttf │ │ ├── RobotoMono-Medium.ttf │ │ ├── RobotoMono-MediumItalic.ttf │ │ ├── RobotoMono-Regular.ttf │ │ ├── RobotoMono-Thin.ttf │ │ └── RobotoMono-ThinItalic.ttf │ └── Rubik │ │ ├── OFL.txt │ │ ├── Rubik-Black.ttf │ │ ├── Rubik-BlackItalic.ttf │ │ ├── Rubik-Bold.ttf │ │ ├── Rubik-BoldItalic.ttf │ │ ├── Rubik-Italic.ttf │ │ ├── Rubik-Light.ttf │ │ ├── Rubik-LightItalic.ttf │ │ ├── Rubik-Medium.ttf │ │ ├── Rubik-MediumItalic.ttf │ │ └── Rubik-Regular.ttf ├── icon │ ├── icon-adaptive.png │ ├── icon-ios.png │ └── icon-legacy.png └── music │ ├── album1.jpg │ ├── album2.jpg │ ├── album3.jpg │ ├── album4.jpg │ ├── album5.jpg │ ├── album6.jpg │ ├── album7.jpg │ ├── album8.jpg │ └── album9.jpg ├── branding ├── art │ ├── banner.png │ └── icon.png ├── gifs │ ├── 1.gif │ ├── 2.gif │ └── 3.gif ├── other │ └── google-play-badge.png └── screener │ └── pixel-xl │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── ios ├── Flutter │ ├── .last_build_id │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ ├── Flutter.podspec │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── 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-50x50@1x.png │ │ ├── Icon-App-50x50@2x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-72x72@1x.png │ │ ├── Icon-App-72x72@2x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── main.dart ├── pages │ ├── about_page.dart │ ├── gradients_page.dart │ ├── home_page.dart │ ├── liquid_page.dart │ ├── material_page.dart │ └── note_page.dart ├── utils │ ├── colors.dart │ ├── page_transformer.dart │ ├── text_styles.dart │ └── ui_helpers.dart └── widgets │ ├── parallax_cards.dart │ ├── sexy_bottom_sheet.dart │ ├── sexy_tile.dart │ └── swiping_cards.dart ├── pubspec.lock └── pubspec.yaml /.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/.metadata -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/launcher_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-anydpi-v26/launcher_icon.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/credits/urmil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/credits/urmil.png -------------------------------------------------------------------------------- /assets/flare/card.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/flare/card.flr -------------------------------------------------------------------------------- /assets/fonts/Quicksand/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Quicksand/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/Quicksand/Quicksand-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Quicksand/Quicksand-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Quicksand/Quicksand-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Quicksand/Quicksand-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Quicksand/Quicksand-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Quicksand/Quicksand-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Quicksand/Quicksand-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Quicksand/Quicksand-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/LICENSE.txt -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/RobotoMono/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/Rubik-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/Rubik-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/Rubik-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/Rubik-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/Rubik-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/Rubik-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/Rubik-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/Rubik-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/Rubik-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Rubik/Rubik-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/fonts/Rubik/Rubik-Regular.ttf -------------------------------------------------------------------------------- /assets/icon/icon-adaptive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/icon/icon-adaptive.png -------------------------------------------------------------------------------- /assets/icon/icon-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/icon/icon-ios.png -------------------------------------------------------------------------------- /assets/icon/icon-legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/icon/icon-legacy.png -------------------------------------------------------------------------------- /assets/music/album1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/music/album1.jpg -------------------------------------------------------------------------------- /assets/music/album2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/music/album2.jpg -------------------------------------------------------------------------------- /assets/music/album3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/music/album3.jpg -------------------------------------------------------------------------------- /assets/music/album4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/music/album4.jpg -------------------------------------------------------------------------------- /assets/music/album5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/music/album5.jpg -------------------------------------------------------------------------------- /assets/music/album6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/music/album6.jpg -------------------------------------------------------------------------------- /assets/music/album7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/music/album7.jpg -------------------------------------------------------------------------------- /assets/music/album8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/music/album8.jpg -------------------------------------------------------------------------------- /assets/music/album9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/assets/music/album9.jpg -------------------------------------------------------------------------------- /branding/art/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/art/banner.png -------------------------------------------------------------------------------- /branding/art/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/art/icon.png -------------------------------------------------------------------------------- /branding/gifs/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/gifs/1.gif -------------------------------------------------------------------------------- /branding/gifs/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/gifs/2.gif -------------------------------------------------------------------------------- /branding/gifs/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/gifs/3.gif -------------------------------------------------------------------------------- /branding/other/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/other/google-play-badge.png -------------------------------------------------------------------------------- /branding/screener/pixel-xl/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/screener/pixel-xl/1.png -------------------------------------------------------------------------------- /branding/screener/pixel-xl/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/screener/pixel-xl/2.png -------------------------------------------------------------------------------- /branding/screener/pixel-xl/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/screener/pixel-xl/3.png -------------------------------------------------------------------------------- /branding/screener/pixel-xl/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/screener/pixel-xl/4.png -------------------------------------------------------------------------------- /branding/screener/pixel-xl/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/branding/screener/pixel-xl/5.png -------------------------------------------------------------------------------- /ios/Flutter/.last_build_id: -------------------------------------------------------------------------------- 1 | 7c97ccb92e7352ef949393feff96a7b5 -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Flutter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Flutter/Flutter.podspec -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/pages/about_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/pages/about_page.dart -------------------------------------------------------------------------------- /lib/pages/gradients_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/pages/gradients_page.dart -------------------------------------------------------------------------------- /lib/pages/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/pages/home_page.dart -------------------------------------------------------------------------------- /lib/pages/liquid_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/pages/liquid_page.dart -------------------------------------------------------------------------------- /lib/pages/material_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/pages/material_page.dart -------------------------------------------------------------------------------- /lib/pages/note_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/pages/note_page.dart -------------------------------------------------------------------------------- /lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/utils/colors.dart -------------------------------------------------------------------------------- /lib/utils/page_transformer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/utils/page_transformer.dart -------------------------------------------------------------------------------- /lib/utils/text_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/utils/text_styles.dart -------------------------------------------------------------------------------- /lib/utils/ui_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/utils/ui_helpers.dart -------------------------------------------------------------------------------- /lib/widgets/parallax_cards.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/widgets/parallax_cards.dart -------------------------------------------------------------------------------- /lib/widgets/sexy_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/widgets/sexy_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/widgets/sexy_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/widgets/sexy_tile.dart -------------------------------------------------------------------------------- /lib/widgets/swiping_cards.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/lib/widgets/swiping_cards.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urmilshroff/dashboard_reborn/HEAD/pubspec.yaml --------------------------------------------------------------------------------