├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── mysite │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── 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-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── fonts │ ├── montserrat │ │ └── montserrat.ttf │ └── poppins │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-Regular.ttf │ │ └── Poppins-SemiBold.ttf ├── gif │ └── hi.gif ├── icons │ ├── android.svg │ ├── apple.svg │ ├── graphic.svg │ └── website.svg └── imgs │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 1.png │ ├── 5424482.jpg │ ├── BG01.png │ ├── IMG_0107.png │ └── flutter.png ├── 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 ├── app │ ├── sections │ │ ├── contact │ │ │ ├── contact.dart │ │ │ ├── contact_desktop.dart │ │ │ └── contact_mobile.dart │ │ ├── home │ │ │ ├── home.dart │ │ │ ├── home_desktop.dart │ │ │ ├── home_mobile.dart │ │ │ ├── home_tab.dart │ │ │ └── widgets │ │ │ │ └── animation_text.dart │ │ ├── main │ │ │ ├── main_section.dart │ │ │ └── widgets │ │ │ │ ├── _body.dart │ │ │ │ ├── _mobile_drawer.dart │ │ │ │ └── _navbar_desktop.dart │ │ ├── portfolio │ │ │ ├── portfolio.dart │ │ │ ├── portfolio_desktop.dart │ │ │ ├── portfolio_mobile.dart │ │ │ └── widgets │ │ │ │ └── project_card.dart │ │ └── services │ │ │ ├── services.dart │ │ │ ├── services_desktop.dart │ │ │ ├── services_mobile.dart │ │ │ └── widgets │ │ │ └── _services_card.dart │ ├── utils │ │ ├── contact_utils.dart │ │ ├── img.dart │ │ ├── navbar_utils.dart │ │ ├── project_utils.dart │ │ ├── services_utils.dart │ │ └── utils.dart │ └── widgets │ │ ├── arrow_on_top.dart │ │ ├── color_chage_btn.dart │ │ ├── custom_outline.dart │ │ ├── custom_text_heading.dart │ │ ├── footer.dart │ │ ├── navbar_actions_button.dart │ │ └── navbar_logo.dart ├── changes │ ├── img.dart │ ├── links.dart │ └── strings.dart ├── core │ ├── animations │ │ ├── entrance_fader.dart │ │ └── zoom_animation.dart │ ├── apis │ │ └── links.dart │ ├── color │ │ └── colors.dart │ ├── configs │ │ ├── app.dart │ │ ├── app_dimensions.dart │ │ ├── configs.dart │ │ ├── connection │ │ │ ├── bloc │ │ │ │ ├── connected_bloc.dart │ │ │ │ ├── connected_event.dart │ │ │ │ └── connected_state.dart │ │ │ └── network_check.dart │ │ ├── others │ │ │ ├── app_typography.dart │ │ │ ├── app_typography_ext.dart │ │ │ ├── date_ext.dart │ │ │ ├── space.dart │ │ │ ├── space_ext.dart │ │ │ └── ui_props.dart │ │ └── ui.dart │ ├── providers │ │ ├── drawer_provider.dart │ │ └── scroll_provider.dart │ ├── res │ │ ├── responsive.dart │ │ └── responsive_size.dart │ ├── theme │ │ ├── app_theme.dart │ │ └── cubit │ │ │ ├── theme_cubit.dart │ │ │ └── theme_state.dart │ └── util │ │ └── constants.dart ├── main.dart └── my_site.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/mysite/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/kotlin/com/example/mysite/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/montserrat/montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/fonts/montserrat/montserrat.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/fonts/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/fonts/poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/fonts/poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/fonts/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/fonts/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/fonts/poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /assets/gif/hi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/gif/hi.gif -------------------------------------------------------------------------------- /assets/icons/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/icons/android.svg -------------------------------------------------------------------------------- /assets/icons/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/icons/apple.svg -------------------------------------------------------------------------------- /assets/icons/graphic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/icons/graphic.svg -------------------------------------------------------------------------------- /assets/icons/website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/icons/website.svg -------------------------------------------------------------------------------- /assets/imgs/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/imgs/02.png -------------------------------------------------------------------------------- /assets/imgs/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/imgs/03.png -------------------------------------------------------------------------------- /assets/imgs/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/imgs/04.png -------------------------------------------------------------------------------- /assets/imgs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/imgs/1.png -------------------------------------------------------------------------------- /assets/imgs/5424482.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/imgs/5424482.jpg -------------------------------------------------------------------------------- /assets/imgs/BG01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/imgs/BG01.png -------------------------------------------------------------------------------- /assets/imgs/IMG_0107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/imgs/IMG_0107.png -------------------------------------------------------------------------------- /assets/imgs/flutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/assets/imgs/flutter.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/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/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/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/sudeshnb/Protfolio_Flutter_Website/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/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/app/sections/contact/contact.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/contact/contact.dart -------------------------------------------------------------------------------- /lib/app/sections/contact/contact_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/contact/contact_desktop.dart -------------------------------------------------------------------------------- /lib/app/sections/contact/contact_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/contact/contact_mobile.dart -------------------------------------------------------------------------------- /lib/app/sections/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/home/home.dart -------------------------------------------------------------------------------- /lib/app/sections/home/home_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/home/home_desktop.dart -------------------------------------------------------------------------------- /lib/app/sections/home/home_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/home/home_mobile.dart -------------------------------------------------------------------------------- /lib/app/sections/home/home_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/home/home_tab.dart -------------------------------------------------------------------------------- /lib/app/sections/home/widgets/animation_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/home/widgets/animation_text.dart -------------------------------------------------------------------------------- /lib/app/sections/main/main_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/main/main_section.dart -------------------------------------------------------------------------------- /lib/app/sections/main/widgets/_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/main/widgets/_body.dart -------------------------------------------------------------------------------- /lib/app/sections/main/widgets/_mobile_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/main/widgets/_mobile_drawer.dart -------------------------------------------------------------------------------- /lib/app/sections/main/widgets/_navbar_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/main/widgets/_navbar_desktop.dart -------------------------------------------------------------------------------- /lib/app/sections/portfolio/portfolio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/portfolio/portfolio.dart -------------------------------------------------------------------------------- /lib/app/sections/portfolio/portfolio_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/portfolio/portfolio_desktop.dart -------------------------------------------------------------------------------- /lib/app/sections/portfolio/portfolio_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/portfolio/portfolio_mobile.dart -------------------------------------------------------------------------------- /lib/app/sections/portfolio/widgets/project_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/portfolio/widgets/project_card.dart -------------------------------------------------------------------------------- /lib/app/sections/services/services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/services/services.dart -------------------------------------------------------------------------------- /lib/app/sections/services/services_desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/services/services_desktop.dart -------------------------------------------------------------------------------- /lib/app/sections/services/services_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/services/services_mobile.dart -------------------------------------------------------------------------------- /lib/app/sections/services/widgets/_services_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/sections/services/widgets/_services_card.dart -------------------------------------------------------------------------------- /lib/app/utils/contact_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/utils/contact_utils.dart -------------------------------------------------------------------------------- /lib/app/utils/img.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/utils/img.dart -------------------------------------------------------------------------------- /lib/app/utils/navbar_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/utils/navbar_utils.dart -------------------------------------------------------------------------------- /lib/app/utils/project_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/utils/project_utils.dart -------------------------------------------------------------------------------- /lib/app/utils/services_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/utils/services_utils.dart -------------------------------------------------------------------------------- /lib/app/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/utils/utils.dart -------------------------------------------------------------------------------- /lib/app/widgets/arrow_on_top.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/widgets/arrow_on_top.dart -------------------------------------------------------------------------------- /lib/app/widgets/color_chage_btn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/widgets/color_chage_btn.dart -------------------------------------------------------------------------------- /lib/app/widgets/custom_outline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/widgets/custom_outline.dart -------------------------------------------------------------------------------- /lib/app/widgets/custom_text_heading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/widgets/custom_text_heading.dart -------------------------------------------------------------------------------- /lib/app/widgets/footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/widgets/footer.dart -------------------------------------------------------------------------------- /lib/app/widgets/navbar_actions_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/widgets/navbar_actions_button.dart -------------------------------------------------------------------------------- /lib/app/widgets/navbar_logo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/app/widgets/navbar_logo.dart -------------------------------------------------------------------------------- /lib/changes/img.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/changes/img.dart -------------------------------------------------------------------------------- /lib/changes/links.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/changes/links.dart -------------------------------------------------------------------------------- /lib/changes/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/changes/strings.dart -------------------------------------------------------------------------------- /lib/core/animations/entrance_fader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/animations/entrance_fader.dart -------------------------------------------------------------------------------- /lib/core/animations/zoom_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/animations/zoom_animation.dart -------------------------------------------------------------------------------- /lib/core/apis/links.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/apis/links.dart -------------------------------------------------------------------------------- /lib/core/color/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/color/colors.dart -------------------------------------------------------------------------------- /lib/core/configs/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/app.dart -------------------------------------------------------------------------------- /lib/core/configs/app_dimensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/app_dimensions.dart -------------------------------------------------------------------------------- /lib/core/configs/configs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/configs.dart -------------------------------------------------------------------------------- /lib/core/configs/connection/bloc/connected_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/connection/bloc/connected_bloc.dart -------------------------------------------------------------------------------- /lib/core/configs/connection/bloc/connected_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/connection/bloc/connected_event.dart -------------------------------------------------------------------------------- /lib/core/configs/connection/bloc/connected_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/connection/bloc/connected_state.dart -------------------------------------------------------------------------------- /lib/core/configs/connection/network_check.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/connection/network_check.dart -------------------------------------------------------------------------------- /lib/core/configs/others/app_typography.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/others/app_typography.dart -------------------------------------------------------------------------------- /lib/core/configs/others/app_typography_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/others/app_typography_ext.dart -------------------------------------------------------------------------------- /lib/core/configs/others/date_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/others/date_ext.dart -------------------------------------------------------------------------------- /lib/core/configs/others/space.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/others/space.dart -------------------------------------------------------------------------------- /lib/core/configs/others/space_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/others/space_ext.dart -------------------------------------------------------------------------------- /lib/core/configs/others/ui_props.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/others/ui_props.dart -------------------------------------------------------------------------------- /lib/core/configs/ui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/configs/ui.dart -------------------------------------------------------------------------------- /lib/core/providers/drawer_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/providers/drawer_provider.dart -------------------------------------------------------------------------------- /lib/core/providers/scroll_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/providers/scroll_provider.dart -------------------------------------------------------------------------------- /lib/core/res/responsive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/res/responsive.dart -------------------------------------------------------------------------------- /lib/core/res/responsive_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/res/responsive_size.dart -------------------------------------------------------------------------------- /lib/core/theme/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/theme/app_theme.dart -------------------------------------------------------------------------------- /lib/core/theme/cubit/theme_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/theme/cubit/theme_cubit.dart -------------------------------------------------------------------------------- /lib/core/theme/cubit/theme_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/theme/cubit/theme_state.dart -------------------------------------------------------------------------------- /lib/core/util/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/core/util/constants.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/my_site.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/lib/my_site.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudeshnb/Protfolio_Flutter_Website/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------