Mobile Programmer
Mobile Programmer
  • 125
  • 1 863 326
#Google Flutter - Debouncer Tutorial - 3 Easy ways.
A "Debouncer" is a programming technique used to limit the frequency of function execution, ensuring that a function is only called once after a specified delay following a rapid series of inputs, like key presses or button clicks. It helps prevent unnecessary or redundant operations by waiting until the input activity has "settled."
Implement Debouncer in 3 different ways
1. Simple Debouncer using Timer
2. Debouncer using Notifier.
3. Using easy_dedounce (pub.dev/packages/easy_debounce)
Plugins Used
- easy_debounce: [pub.dev/packages/easy_debounce]
Written Tutorial:
www.coderzheaven.com/2024/08/26/3-simple-ways-to-use-debouncer-in-flutter/
Source Code:
- Branch: feat/debounce
- [GitHub Repository](github.com/MrVipinVijayan/flutter_tutorials/tree/feat/debounce)
#Flutter, #FlutterDebouncer, #Debouncer, #FlutterTutorial, #Programming, #MobileAppDevelopment, #GitHubRepository, #FlutterDevelopment, #CodingTutorial, #SoftwareDevelopment, #FlutterPlugins, #BlocWithHttp, #GitHubSourceCode, #LikeSubscribeShare, #TechTutorial, #DeveloperCommunity
Переглядів: 255

Відео

# Google - Flutter Bloc Tutorial - To Do App example
Переглядів 6833 місяці тому
Flutter Bloc Tutorial using isar Database Read more about Isar database from here isar.dev/ Read about Flutter Bloc from here pub.dev/packages/flutter_bloc Source code: github.com/MrVipinVijayan/flutter_tutorials.git More Tutorials: coderzheaven.com
#googleflutter How to use Bloc with Http & Equatable package.Simple Http Service Tutorial with Bloc
Переглядів 3688 місяців тому
🚀 Video Demonstrating How to use Bloc with Http 🔌 Plugins Used: - flutter_bloc: [pub.dev/packages/flutter_bloc] (pub.dev/packages/flutter_bloc) - equatable: [pub.dev/packages/equatable] (pub.dev/packages/equatable) 📁 Source Code: - Branch: bloc_http - [GitHub Repository](github.com/MrVipinVijayan/flutter_tutorials/tree/feat/bloc_http) 📝 Cubit vs. Bloc: 👋 That's all for this video. In this video...
#googleflutter Cubit Vs Bloc - Flutter Bloc Tutorial
Переглядів 2,7 тис.8 місяців тому
#Flutter, #FlutterBloc, #StateManagement, #CubitVsBloc, #FlutterTutorials, #Programming, #MobileAppDevelopment, #OpenSource, #GitHub, #FlutterDevelopment, #ProgrammingTutorial, #Coding, #TechTalk, #SoftwareDevelopment, #DevCommunity, #CodingTips, #FlutterPlugins, #LearnFlutter, #TechExplained 🚀 Video Demonstrating the Difference between Cubit and Bloc in flutter_bloc 🔌 Plugins Used: - flutter_b...
#googleflutter Background Audio Player in Flutter, Play Audio when app is in background
Переглядів 2,2 тис.8 місяців тому
Video Demonstrating how to play audio in background in Flutter. This video shows how to implement it in Android and iOS. Plugins used: just_audio_background: pub.dev/packages/just_audio_background just_audio: pub.dev/packages/just_audio provider: pub.dev/packages/provider logger: pub.dev/packages/logger Source code: Branch: bg-audio-player github.com/MrVipinVijayan/flutter_tutorials/tree/feat/b...
#Google Flutter - GetX - Form Validation
Переглядів 2,3 тис.Рік тому
GetX is a popular state management library for Flutter that provides a simple and powerful way to manage the state of your application. It follows a reactive and intuitive approach, making it easy to work with and reducing boilerplate code. The library was inspired by the React Hooks API and combines both state management and dependency injection in a single package. Key Concepts: 1. Reactive S...
#Google Flutter: Form Validation using basic methods, Provider and BLoC state management patterns.
Переглядів 4,8 тис.Рік тому
This tutorial explains how you can do Form validation in a beginner way, also using Providers and using BloC state management library. Provider: pub.dev/packages/provider Flutter BloC: pub.dev/packages/flutter_bloc Source code: github.com/MrVipinVijayan/flutter_tutorials/tree/feat/form-validation Provider: A Flutter package for state management, allowing easy sharing of data across the widget t...
#Google Flutter - Theme Extensions
Переглядів 3,2 тис.Рік тому
Theme Extensions, An awesome feature introduced in Flutter 3. Documentation: itnext.io/custom-theme-using-theme-extensions-8afb67248d2b Website: www.coderzheaven.com/2022/12/16/custom-theme-using-theme-extensions/ Find me on Medium: vipinvijayannair.medium.com Facebook: contactvipinvijayan Twitter: @mr_vipin_nair Page: Mobile-Tutor-299932940922778 Leave your valuable f...
#Google's Flutter Tutorial - Best Practices Part 5
Переглядів 1,3 тис.Рік тому
Here are 10 Flutter Best Practices. 1. Don’t explicitly initialize variables null 2. Use expression function bodies 3. Using Cascading Operator 4. Use spread collections 5. Use Literal to initialize growable collections. 6. Use Colors in a separate file 7. Using Dart Code Metrics 8. Make Flutter layout responsive with Fittedbox Widget 9. Flutter Security Best Practices 10. Use _ (underscore) if...
#Google's Flutter Tutorial - Best Practices - Part 4
Переглядів 970Рік тому
Here are 5 Flutter Best Practices. 1. Don’t use ‘ ’ for concatenating strings, use string interpolation 2. Don’t create a lambda when a tear-off will do 3. Using async/await more readable way 4. Use ListView.builder for a building list with same views. 5. Split widgets Written Tutorial: itnext.io/flutter-best-practices-part-4-709e7bceabf Website: coderzheaven.com Find me on Medium: vipinvijayan...
#Google's Flutter Tutorial - Best Practices - Part 3
Переглядів 1,1 тис.Рік тому
Here are 5 Flutter Best Practices. 1. Use Raw Strings. 2. Avoid print calls. 3. Use print statements only in Debug Mode. 4. Use _ for private variables. 5. Use final constants for unmodified variables. Written Tutorial: itnext.io/flutter-best-practices-part-3-747f1bfaec6b Website: coderzheaven.com Find me on Medium: vipinvijayannair.medium.com Facebook: contactvipinvijayan Twitter:...
#Google's Flutter Tutorial - Best Practices - Part 2
Переглядів 1,6 тис.2 роки тому
Here are 5 Flutter Best Practices. 1. Avoid Functional Widgets 2. Specify Types for variables 3. Use ‘is’ instead of ‘as’ 4. Use Item Extent in List if you have longer lists 5. Use ?? and ?. operators Written Tutorial: itnext.io/flutter-best-practices-part-2-e9e5c79ccb16 Website: coderzheaven.com Find me on Medium: vipinvijayannair.medium.com Facebook: contactvipinvijayan Twitter: ...
#Google Flutter Tutorial - Best Practices - Part 1
Переглядів 3,7 тис.2 роки тому
Here are 5 Flutter Best Practices. 1. SizedBox Placeholder 2. If operator 3. Const Widgets 4. Naming conventions 5. Themes Written Tutorial: medium.com/p/e89467ea4823 Website: coderzheaven.com Find me on Medium: vipinvijayannair.medium.com Facebook: contactvipinvijayan Twitter: @mr_vipin_nair Page: Mobile-Tutor-299932940922778 Leave your valuable feedback comments belo...
#Google Flutter Tutorial - Debug Network Calls in Flutter with Alice
Переглядів 2,3 тис.2 роки тому
Hello Everyone, This video will help you to debug network calls in flutter without opening any particular tool and display the results in the UI itself with the help of package called "Alice" Alice: pub.dev/packages/alice Alice's inspector allows you to see debug data all in the UI itself. Source Code: bitbucket.org/vipinvijayan1987/tutorialprojects/src/debug_network_calls/ Written Tutorial: vi...
#Google Flutter Tutorial - Bi-Directional Communication b/w Native and Flutter made easy
Переглядів 1,6 тис.2 роки тому
This simple tutorial will help you to learn how to communicate with Native Android and iOS code and return data back to Flutter. In this demo, you will also learn how to call a flutter function from Native Android and iOS. Please let me know if you have any comments. Please like, share and subscribe to support. Source Code: bitbucket.org/vipinvijayan1987/tutorialprojects/src/method_channels/ Br...
Understanding Null Safety in Flutter using real world example - Part 2 (coderzheaven.com)
Переглядів 1,1 тис.2 роки тому
Understanding Null Safety in Flutter using real world example - Part 2 (coderzheaven.com)
Understanding Null Safety in Flutter using real world example - Part 1 (coderzheaven.com)
Переглядів 2,5 тис.2 роки тому
Understanding Null Safety in Flutter using real world example - Part 1 (coderzheaven.com)
#Google Flutter - MVVM in Flutter using Providers.
Переглядів 57 тис.2 роки тому
#Google Flutter - MVVM in Flutter using Providers.
Google's Flutter Tutorial - Dynamic Forms & Accessing Data from Dynamic Forms. - Flutter
Переглядів 18 тис.3 роки тому
Google's Flutter Tutorial - Dynamic Forms & Accessing Data from Dynamic Forms. - Flutter
#Google's Flutter Tutorial - Theme your App using BLoC and Shared Preferences.
Переглядів 4,6 тис.3 роки тому
#Google's Flutter Tutorial - Theme your App using BLoC and Shared Preferences.
#Google's Flutter Tutorial - BLOC for State Management - Real Example (coderzheaven.com)
Переглядів 15 тис.3 роки тому
#Google's Flutter Tutorial - BLOC for State Management - Real Example (coderzheaven.com)
#Google's Flutter Tutorial - Play Youtube Videos, Access YouTube API, Get. Videos List from Playlist
Переглядів 28 тис.4 роки тому
#Google's Flutter Tutorial - Play UA-cam Videos, Access UA-cam API, Get. Videos List from Playlist
#Google's Flutter Tutorial - Reusable Widgets - Part 2 (coderzheaven.com)
Переглядів 2 тис.4 роки тому
#Google's Flutter Tutorial - Reusable Widgets - Part 2 (coderzheaven.com)
#Google's Flutter Tutorial - Reusable Widgets & Reusable Custom AppBars in Flutter(coderzheaven.com)
Переглядів 12 тис.4 роки тому
#Google's Flutter Tutorial - Reusable Widgets & Reusable Custom AppBars in Flutter(coderzheaven.com)
#Google's Flutter - Local Notifications in Flutter (coderzheaven.com)
Переглядів 28 тис.4 роки тому
#Google's Flutter - Local Notifications in Flutter (coderzheaven.com)
#Google's FlutterTutorial - Background Running Music Player like Amazon Music in Flutter
Переглядів 23 тис.4 роки тому
#Google's FlutterTutorial - Background Running Music Player like Amazon Music in Flutter
#Flutter Tutorial - Save Selected Image in App Directory in separate Thread (coderzheaven.com)
Переглядів 13 тис.4 роки тому
#Flutter Tutorial - Save Selected Image in App Directory in separate Thread (coderzheaven.com)
#Google's Flutter Tutorial - Complete Chat Application in Flutter using Socket IO (coderzheaven.com)
Переглядів 41 тис.4 роки тому
#Google's Flutter Tutorial - Complete Chat Application in Flutter using Socket IO (coderzheaven.com)
# Google's Flutter Tutorial- Easily Parse Complex JSON, Create JSON Model Classes, Show in ListView.
Переглядів 71 тис.4 роки тому
# Google's Flutter Tutorial- Easily Parse Complex JSON, Create JSON Model Classes, Show in ListView.
#Google's Flutter Tutorial - Easy State Management using Providers in Flutter (coderzheaven.com)
Переглядів 21 тис.4 роки тому
#Google's Flutter Tutorial - Easy State Management using Providers in Flutter (coderzheaven.com)