Edgar Aldairedgaraldair.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...Discuss·29 readsStatelessWidget
Queen Anthonyflutter-with-queen.hashnode.dev·Jun 29, 2024Understanding flutter widgets: Stateless and Stateful WidgetsFlutter is an open-source UI software development kit created by Google. It is a cross-platform framework that uses a single codebase to build applications for different platforms such as Windows, macOS, Android, and iOS. The flutter framework is des...Discussqueenanthony
Mayursinh Parmarmayursinhdevblog.hashnode.dev·Apr 10, 2024Topic: 2 Understanding widgets in detailHello devs, As we decided in the previous blog in this blog we discussed about Different types of widgets that are used to create UI in Flutter and deeply understand the stateful widgets lifecycle. Types of Stateless Widgets Basic UI Widgets: Text:...DiscussLearn Flutter: Basic to AdvanceFlutter
pheranmy Olabiyidevf.hashnode.dev·Jan 12, 2024Mastering Flutter Widgets — Part 1: The Building Blocks of Brilliance.Have you ever dreamt of bringing your app ideas to life like a master architect, effortlessly constructing stunning UIs that mesmerize users? or ever wondered what separates a good app from a great one? The answer lies in the heart of every captivati...DiscussFlutter
Hafsa Abiddevwithflutter.hashnode.dev·Sep 8, 2023Flutter Widgets Demystified: A Comprehensive GuideIn the world of Flutter, widgets are the building blocks of user interfaces. Whether you're new to Flutter or looking to deepen your understanding, this guide will introduce you to the concept of widgets and unravel the distinction between two fundam...Discuss·2 likes·53 readsFlutter
Rabin Acharyablog.rabinacharya.info.np·Jun 28, 2023The better way to create stateful widgets in flutterWell, since you have come here, I can guess you are looking for some improvements in your coding and code quality. That's great! Let's take a look at it how we can do it better : While using the stateful widgets we need to be mindful of rebuilding th...Discuss·5 likes·77 readsFlutter
CHIRAG KUMARichiragkumar.tech·Jun 7, 2023How to create Fullstate widget in flutter manuallystep 1. Create a class with MywidgetName and extends it. class MyWidget extends StatefulWidget extends { } // Then creae a another class with same name but class MyWidgetState extends State<MyWidget>{ @override Widget build(BuildCo...DiscussFlutter
Atuoha Anthonyatuoha.hashnode.dev·Dec 24, 2022Understanding Stateless and Stateful Widgets in FlutterThere is nothing much difference between a stateful and a stateless widget other than the ability to change when a user interacts with a component on the screen.Stateless widgets are widgets that do not require mutable states. It describes part of th...Discussstatelesswidgets statefulwidgets flutter