├── Animation.dart ├── CapsuleButton.dart ├── Capsule_buttons.png ├── Cloud Firestore.zip ├── CupertinoActionSheet.dart ├── Discover.mp4 ├── Enabling smooth communication between JavaScript and Dart in Flutter.pdf ├── FbSignIn.zip ├── GoogleMaps.dart ├── GoogleSignIn.zip ├── GraphQL.dart ├── HorizontalListView.dart ├── HorizontalListView.gif ├── InternetConnectivity.dart ├── Navigation.dart ├── Navigation.gif ├── No Net.gif ├── OneSignal.dart ├── Prototyping with GenAI - DevFest SG 2023.pdf ├── Providers.pptx ├── README.md ├── ShapeBorderClipper .dart ├── Shapes.dart ├── Snackbar.png ├── StepperWithForm.dart ├── Stripe_and_Flutter.zip ├── Table.dart ├── TextField.dart ├── TextField.gif ├── TwitterSignInWebsite.zip ├── Vertical Buttons.dart ├── Vertical_buttons.png ├── WebView.dart ├── barcode.dart ├── bloc_complete.zip ├── chatgpt_embedding ├── chatgpt_embedding │ ├── README.md │ ├── analysis_options.yaml │ ├── chatgpt_embedding.iml │ ├── lib │ │ ├── main.dart │ │ └── src │ │ │ └── gpt.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── web │ │ ├── assets │ │ ├── bot.svg │ │ ├── send.svg │ │ └── user.svg │ │ ├── css │ │ └── style.css │ │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ ├── Icon-maskable-512.png │ │ └── favicon.png │ │ ├── index.html │ │ ├── js │ │ └── js-interop.js │ │ └── manifest.json └── server │ ├── package-lock.json │ ├── package.json │ └── server.js ├── circular_progress_loader.png ├── crashlytics and perf.zip ├── d.gif ├── dart_lambda.zip ├── dart_on_server.zip ├── exp-with-makersuite.zip ├── experiment_with_dartfrog ├── client │ ├── README.md │ ├── analysis_options.yaml │ ├── client.iml │ ├── lib │ │ ├── main.dart │ │ └── src │ │ │ ├── client.dart │ │ │ └── file_picker.dart │ ├── macos │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ ├── Flutter-Release.xcconfig │ │ │ └── GeneratedPluginRegistrant.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Pods │ │ │ ├── Local Podspecs │ │ │ │ └── FlutterMacOS.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── Pods.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcuserdata │ │ │ │ │ └── aseemwangoo.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── FlutterMacOS.xcscheme │ │ │ │ │ ├── Pods-Runner.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ └── Target Support Files │ │ │ │ ├── FlutterMacOS │ │ │ │ ├── FlutterMacOS.debug.xcconfig │ │ │ │ └── FlutterMacOS.release.xcconfig │ │ │ │ └── Pods-Runner │ │ │ │ ├── Pods-Runner-Info.plist │ │ │ │ ├── Pods-Runner-acknowledgements.markdown │ │ │ │ ├── Pods-Runner-acknowledgements.plist │ │ │ │ ├── Pods-Runner-dummy.m │ │ │ │ ├── Pods-Runner-umbrella.h │ │ │ │ ├── Pods-Runner.debug.xcconfig │ │ │ │ ├── Pods-Runner.modulemap │ │ │ │ ├── Pods-Runner.profile.xcconfig │ │ │ │ └── Pods-Runner.release.xcconfig │ │ ├── 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 └── server │ ├── README.md │ ├── analysis_options.yaml │ ├── packages │ ├── rekognition │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── lib │ │ │ ├── env.dart │ │ │ ├── rekognition.dart │ │ │ └── src │ │ │ │ ├── models │ │ │ │ ├── celebrity.dart │ │ │ │ ├── celebrity.g.dart │ │ │ │ └── models.dart │ │ │ │ └── rekognition_base.dart │ │ ├── pubspec.lock │ │ └── pubspec.yaml │ └── rekognition_data_source │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── lib │ │ ├── rekognition_data_source.dart │ │ └── src │ │ │ └── rekognition_data_source_base.dart │ │ ├── pubspec.lock │ │ └── pubspec.yaml │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── routes │ ├── _middleware.dart │ └── api │ │ └── v1 │ │ ├── rekognizeIfCelebrity │ │ └── index.dart │ │ └── rekognizeTest │ │ └── index.dart │ └── test │ └── routes │ ├── rekognizeIfCelebrity_test.dart │ └── rekognize_test.dart ├── face_detect.dart ├── ffi_2_18 ├── CHANGELOG.md ├── README.md ├── analysis_options.yaml ├── avf_audio_bindings.dart ├── avf_audio_config.yaml ├── bin │ ├── audio.dart │ ├── calendar.dart │ ├── timezones.dart │ └── url_cache.dart ├── calendar_bindings.dart ├── calendar_config.yaml ├── headers │ └── NSTimeZone.h ├── lib │ └── ffi_2_18.dart ├── pubspec.lock ├── pubspec.yaml ├── test.mp3 ├── test │ └── ffi_2_18_test.dart ├── timezone_bindings.dart ├── timezone_config.yaml ├── url_cache_bindings.dart └── url_cache_config.yaml ├── ffi_linux.zip ├── ffi_talk.zip ├── firestore-emulator.zip ├── flutter_2.zip ├── future_builder_part_two.gif ├── futurebuilder-part1.gif ├── futurebuilder_part1.dart ├── futurebuilder_part2.dart ├── grad_image.gif ├── grad_text.gif ├── gradient_image.dart ├── gradient_text.dart ├── image_labelling.dart ├── imagepicker.dart ├── mlkit.dart ├── provider.zip ├── providers_test.zip ├── segmentedcontrol.dart ├── snackbar.dart ├── spritewidget.zip ├── web_embedding ├── README.md ├── analysis_options.yaml ├── lib │ ├── main.dart │ └── src │ │ └── counter.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart ├── web │ ├── css │ │ └── style.css │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ ├── Icon-maskable-512.png │ │ └── favicon.png │ ├── index.html │ ├── js │ │ └── js-interop.js │ └── manifest.json └── web_embedding.iml ├── windows.zip └── with net.gif /Animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Animation.dart -------------------------------------------------------------------------------- /CapsuleButton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/CapsuleButton.dart -------------------------------------------------------------------------------- /Capsule_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Capsule_buttons.png -------------------------------------------------------------------------------- /Cloud Firestore.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Cloud Firestore.zip -------------------------------------------------------------------------------- /CupertinoActionSheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/CupertinoActionSheet.dart -------------------------------------------------------------------------------- /Discover.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Discover.mp4 -------------------------------------------------------------------------------- /Enabling smooth communication between JavaScript and Dart in Flutter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Enabling smooth communication between JavaScript and Dart in Flutter.pdf -------------------------------------------------------------------------------- /FbSignIn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/FbSignIn.zip -------------------------------------------------------------------------------- /GoogleMaps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/GoogleMaps.dart -------------------------------------------------------------------------------- /GoogleSignIn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/GoogleSignIn.zip -------------------------------------------------------------------------------- /GraphQL.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/GraphQL.dart -------------------------------------------------------------------------------- /HorizontalListView.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/HorizontalListView.dart -------------------------------------------------------------------------------- /HorizontalListView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/HorizontalListView.gif -------------------------------------------------------------------------------- /InternetConnectivity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/InternetConnectivity.dart -------------------------------------------------------------------------------- /Navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Navigation.dart -------------------------------------------------------------------------------- /Navigation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Navigation.gif -------------------------------------------------------------------------------- /No Net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/No Net.gif -------------------------------------------------------------------------------- /OneSignal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/OneSignal.dart -------------------------------------------------------------------------------- /Prototyping with GenAI - DevFest SG 2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Prototyping with GenAI - DevFest SG 2023.pdf -------------------------------------------------------------------------------- /Providers.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Providers.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/README.md -------------------------------------------------------------------------------- /ShapeBorderClipper .dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ShapeBorderClipper .dart -------------------------------------------------------------------------------- /Shapes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Shapes.dart -------------------------------------------------------------------------------- /Snackbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Snackbar.png -------------------------------------------------------------------------------- /StepperWithForm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/StepperWithForm.dart -------------------------------------------------------------------------------- /Stripe_and_Flutter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Stripe_and_Flutter.zip -------------------------------------------------------------------------------- /Table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Table.dart -------------------------------------------------------------------------------- /TextField.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/TextField.dart -------------------------------------------------------------------------------- /TextField.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/TextField.gif -------------------------------------------------------------------------------- /TwitterSignInWebsite.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/TwitterSignInWebsite.zip -------------------------------------------------------------------------------- /Vertical Buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Vertical Buttons.dart -------------------------------------------------------------------------------- /Vertical_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/Vertical_buttons.png -------------------------------------------------------------------------------- /WebView.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/WebView.dart -------------------------------------------------------------------------------- /barcode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/barcode.dart -------------------------------------------------------------------------------- /bloc_complete.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/bloc_complete.zip -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/README.md -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/analysis_options.yaml -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/chatgpt_embedding.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/chatgpt_embedding.iml -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/lib/main.dart -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/lib/src/gpt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/lib/src/gpt.dart -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/pubspec.lock -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/pubspec.yaml -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/assets/bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/assets/bot.svg -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/assets/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/assets/send.svg -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/assets/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/assets/user.svg -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/css/style.css -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/icons/Icon-192.png -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/icons/Icon-512.png -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/icons/favicon.png -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/index.html -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/js/js-interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/js/js-interop.js -------------------------------------------------------------------------------- /chatgpt_embedding/chatgpt_embedding/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/chatgpt_embedding/web/manifest.json -------------------------------------------------------------------------------- /chatgpt_embedding/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/server/package-lock.json -------------------------------------------------------------------------------- /chatgpt_embedding/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/server/package.json -------------------------------------------------------------------------------- /chatgpt_embedding/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/chatgpt_embedding/server/server.js -------------------------------------------------------------------------------- /circular_progress_loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/circular_progress_loader.png -------------------------------------------------------------------------------- /crashlytics and perf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/crashlytics and perf.zip -------------------------------------------------------------------------------- /d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/d.gif -------------------------------------------------------------------------------- /dart_lambda.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/dart_lambda.zip -------------------------------------------------------------------------------- /dart_on_server.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/dart_on_server.zip -------------------------------------------------------------------------------- /exp-with-makersuite.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/exp-with-makersuite.zip -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/README.md -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/analysis_options.yaml -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/client.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/client.iml -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/lib/main.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/lib/src/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/lib/src/client.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/lib/src/file_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/lib/src/file_picker.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Podfile -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Podfile.lock -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Local Podspecs/FlutterMacOS.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Local Podspecs/FlutterMacOS.podspec.json -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Manifest.lock -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Pods.xcodeproj/xcuserdata/aseemwangoo.xcuserdatad/xcschemes/FlutterMacOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Pods.xcodeproj/xcuserdata/aseemwangoo.xcuserdatad/xcschemes/FlutterMacOS.xcscheme -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Pods.xcodeproj/xcuserdata/aseemwangoo.xcuserdatad/xcschemes/Pods-Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Pods.xcodeproj/xcuserdata/aseemwangoo.xcuserdatad/xcschemes/Pods-Runner.xcscheme -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Pods.xcodeproj/xcuserdata/aseemwangoo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Pods.xcodeproj/xcuserdata/aseemwangoo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/FlutterMacOS/FlutterMacOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/FlutterMacOS/FlutterMacOS.debug.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/FlutterMacOS/FlutterMacOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/FlutterMacOS/FlutterMacOS.release.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-Info.plist -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.markdown -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-acknowledgements.plist -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-dummy.m -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner.modulemap -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Info.plist -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/pubspec.lock -------------------------------------------------------------------------------- /experiment_with_dartfrog/client/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/client/pubspec.yaml -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/README.md -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/analysis_options.yaml -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition/README.md -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition/analysis_options.yaml -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition/lib/env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition/lib/env.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition/lib/rekognition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition/lib/rekognition.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition/lib/src/models/celebrity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition/lib/src/models/celebrity.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition/lib/src/models/celebrity.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition/lib/src/models/celebrity.g.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition/lib/src/models/models.dart: -------------------------------------------------------------------------------- 1 | export 'celebrity.dart'; 2 | -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition/lib/src/rekognition_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition/lib/src/rekognition_base.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition/pubspec.lock -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition/pubspec.yaml -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition_data_source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition_data_source/README.md -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition_data_source/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition_data_source/analysis_options.yaml -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition_data_source/lib/rekognition_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition_data_source/lib/rekognition_data_source.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition_data_source/lib/src/rekognition_data_source_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition_data_source/lib/src/rekognition_data_source_base.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition_data_source/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition_data_source/pubspec.lock -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/packages/rekognition_data_source/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/packages/rekognition_data_source/pubspec.yaml -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/pubspec.lock -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/pubspec.yaml -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/routes/_middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/routes/_middleware.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/routes/api/v1/rekognizeIfCelebrity/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/routes/api/v1/rekognizeIfCelebrity/index.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/routes/api/v1/rekognizeTest/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/routes/api/v1/rekognizeTest/index.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/test/routes/rekognizeIfCelebrity_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/test/routes/rekognizeIfCelebrity_test.dart -------------------------------------------------------------------------------- /experiment_with_dartfrog/server/test/routes/rekognize_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/experiment_with_dartfrog/server/test/routes/rekognize_test.dart -------------------------------------------------------------------------------- /face_detect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/face_detect.dart -------------------------------------------------------------------------------- /ffi_2_18/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /ffi_2_18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/README.md -------------------------------------------------------------------------------- /ffi_2_18/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/analysis_options.yaml -------------------------------------------------------------------------------- /ffi_2_18/avf_audio_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/avf_audio_bindings.dart -------------------------------------------------------------------------------- /ffi_2_18/avf_audio_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/avf_audio_config.yaml -------------------------------------------------------------------------------- /ffi_2_18/bin/audio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/bin/audio.dart -------------------------------------------------------------------------------- /ffi_2_18/bin/calendar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/bin/calendar.dart -------------------------------------------------------------------------------- /ffi_2_18/bin/timezones.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/bin/timezones.dart -------------------------------------------------------------------------------- /ffi_2_18/bin/url_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/bin/url_cache.dart -------------------------------------------------------------------------------- /ffi_2_18/calendar_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/calendar_bindings.dart -------------------------------------------------------------------------------- /ffi_2_18/calendar_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/calendar_config.yaml -------------------------------------------------------------------------------- /ffi_2_18/headers/NSTimeZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/headers/NSTimeZone.h -------------------------------------------------------------------------------- /ffi_2_18/lib/ffi_2_18.dart: -------------------------------------------------------------------------------- 1 | int calculate() { 2 | return 6 * 7; 3 | } 4 | -------------------------------------------------------------------------------- /ffi_2_18/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/pubspec.lock -------------------------------------------------------------------------------- /ffi_2_18/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/pubspec.yaml -------------------------------------------------------------------------------- /ffi_2_18/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/test.mp3 -------------------------------------------------------------------------------- /ffi_2_18/test/ffi_2_18_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/test/ffi_2_18_test.dart -------------------------------------------------------------------------------- /ffi_2_18/timezone_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/timezone_bindings.dart -------------------------------------------------------------------------------- /ffi_2_18/timezone_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/timezone_config.yaml -------------------------------------------------------------------------------- /ffi_2_18/url_cache_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/url_cache_bindings.dart -------------------------------------------------------------------------------- /ffi_2_18/url_cache_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_2_18/url_cache_config.yaml -------------------------------------------------------------------------------- /ffi_linux.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_linux.zip -------------------------------------------------------------------------------- /ffi_talk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/ffi_talk.zip -------------------------------------------------------------------------------- /firestore-emulator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/firestore-emulator.zip -------------------------------------------------------------------------------- /flutter_2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/flutter_2.zip -------------------------------------------------------------------------------- /future_builder_part_two.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/future_builder_part_two.gif -------------------------------------------------------------------------------- /futurebuilder-part1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/futurebuilder-part1.gif -------------------------------------------------------------------------------- /futurebuilder_part1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/futurebuilder_part1.dart -------------------------------------------------------------------------------- /futurebuilder_part2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/futurebuilder_part2.dart -------------------------------------------------------------------------------- /grad_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/grad_image.gif -------------------------------------------------------------------------------- /grad_text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/grad_text.gif -------------------------------------------------------------------------------- /gradient_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/gradient_image.dart -------------------------------------------------------------------------------- /gradient_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/gradient_text.dart -------------------------------------------------------------------------------- /image_labelling.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/image_labelling.dart -------------------------------------------------------------------------------- /imagepicker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/imagepicker.dart -------------------------------------------------------------------------------- /mlkit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/mlkit.dart -------------------------------------------------------------------------------- /provider.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/provider.zip -------------------------------------------------------------------------------- /providers_test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/providers_test.zip -------------------------------------------------------------------------------- /segmentedcontrol.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/segmentedcontrol.dart -------------------------------------------------------------------------------- /snackbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/snackbar.dart -------------------------------------------------------------------------------- /spritewidget.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/spritewidget.zip -------------------------------------------------------------------------------- /web_embedding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/README.md -------------------------------------------------------------------------------- /web_embedding/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/analysis_options.yaml -------------------------------------------------------------------------------- /web_embedding/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/lib/main.dart -------------------------------------------------------------------------------- /web_embedding/lib/src/counter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/lib/src/counter.dart -------------------------------------------------------------------------------- /web_embedding/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/pubspec.lock -------------------------------------------------------------------------------- /web_embedding/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/pubspec.yaml -------------------------------------------------------------------------------- /web_embedding/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/test/widget_test.dart -------------------------------------------------------------------------------- /web_embedding/web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/web/css/style.css -------------------------------------------------------------------------------- /web_embedding/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web_embedding/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web_embedding/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web_embedding/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web_embedding/web/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/web/icons/favicon.png -------------------------------------------------------------------------------- /web_embedding/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/web/index.html -------------------------------------------------------------------------------- /web_embedding/web/js/js-interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/web/js/js-interop.js -------------------------------------------------------------------------------- /web_embedding/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/web/manifest.json -------------------------------------------------------------------------------- /web_embedding/web_embedding.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/web_embedding/web_embedding.iml -------------------------------------------------------------------------------- /windows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/windows.zip -------------------------------------------------------------------------------- /with net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AseemWangoo/flutter_programs/HEAD/with net.gif --------------------------------------------------------------------------------