Edgar AldairforFlutter Insightedgaraldair.hashnode.dev·Nov 19, 2024StatelessWidget vs StatefulWidget: ¿Cuál y cuándo usar?Cuando comenzamos a desarrollar en Flutter, una de las primeras cosas que aprendemos es que todo en Flutter es un widget. Desde un botón hasta la estructura completa de una pantalla, podría decirse que los widgets son los bloques fundamentales con lo...DiscussStatelessWidget
Thomas BurkhartProblog.burkharts.net·Oct 27, 2024Keeping widgets in sync with your dataThis is a follow-up to my last post on using proxy objects.This time we will: Improve error handling Show how to display a proxy in multiple places at once Demonstrate how to use Commands to write elegant code Improving the Error Handling of the...Discuss·345 reads#flutter_command
Laurence Wayneflutter-template.hashnode.dev·Sep 29, 2024Save Time on Firebase & Stripe Integration for Your Flutter Web AppAs developers, we know that setting up essential integrations like Firebase and Stripe can take up a lot of time when building a new project, especially for Flutter web apps. While these tools are incredibly powerful, configuring them correctly can b...DiscussFlutter
Maharshi Sinhamaharshisinha.hashnode.dev·Sep 8, 2024Seamless Flutter-Native Integration: The Power of Method ChannelsAs Flutter developers, we enjoy the ease of building apps for both iOS and Android with a single codebase. But what if you need to tap into some native functionality? Whether it's accessing sensors, using a device-specific API, or integrating native ...Discuss·2 likes·202 readsFlutter
Singaraju Saitejasingarajusaiteja.hashnode.dev·Sep 7, 2024Dart fundamentals for flutterProgramming Fundamentals Variables Strings Conditions Loops Functions Lists Map Classes Async and await File handling Variables Variables are containers that store value. Declaration: declaring variables with "var". var name = "flutt...DiscussDart
Mateo Ramirez Rubiomateoramirezr.hashnode.dev·Aug 6, 2024Using Environment Variables with flutter_dotenv DotEnv in Flutter: Step by Step GuideIntroduction When building Flutter applications, it's essential to manage sensitive data like API keys, database credentials, or environment-specific configurations. Hardcoding these values directly in your code is a security risk and can lead to iss...DiscussDart
Ayiko Andrewayikoandrew.hashnode.dev·Jul 8, 2024100 Days Of Coding Challenge ( Week 5 Summary): Exploring DartLast week, I explored loops, branching, and exception and error handling in depth. This week, I covered a lot and will be discussing classes, constructors, and methods. Let us start today's class. Classes A class is a blueprint of an object. Every ob...Discuss·10 likes100 Days Of Coding With Dart/Flutter#dart language
Peter Ewanfoluckypeter.hashnode.dev·Jul 8, 2024How to Implement Custom Theme (Dark & Light Mode) in Flutter using ThemeExtensionApplication theming is now a major practice in mobile and web development. With more users adopting it and major apps integrating these practices, it is important for us as engineers to know how to implement it. In this article, I will explain how to...Discuss·56 readsFlutterFlutter
Bhoomit Patelbhoomit.hashnode.dev·Jun 22, 2024Exploring Enhanced Enums in Flutter: A Simple Guide for Beginners and Experienced DevelopersHello Flutter enthusiasts! Whether you're just starting your journey with Flutter or have been developing with it for a while, you know how enums can be incredibly useful. In this blog, we'll dive into the concept of enhanced enums in Flutter. We'll ...Discuss·74 readsFundamentals of dartFlutter
Sadanand gadwalsadanandgadwal.hashnode.dev·Jun 20, 2024Dart Abstract Classes and Polymorphism in Dart — Part 6In Dart, abstract classes serve as blueprints for other classes, defining common behaviors and properties that subclasses can inherit and implement. This enables polymorphic behavior, allowing different objects to respond to the same message in diffe...Discuss·10 likesDartDart