Parth Shethparthshethflutterdeveloper.hashnode.dev·12 hours agoUnderstanding the Flutter Container WidgetIn Flutter, the Container widget is one of the most commonly used and versatile widgets. It allows you to create a box model in your app's layout. You can use it to apply padding, margins, borders, backgrounds, and much more. If you're just starting ...Discuss·1 likeFlutter WidgetsFlutter
Parth Shethparthshethflutterdeveloper.hashnode.dev·Nov 20, 2024Flutter TextField Widget: A Comprehensive GuideThe TextField widget is a cornerstone of user input in Flutter applications. Whether you're building a login screen, a chat application, or a search bar, the TextField provides a flexible and feature-rich way to capture user data. What is a TextField...Discuss·1 likeFlutter WidgetsFlutter
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
Parth Shethparthshethflutterdeveloper.hashnode.dev·Nov 19, 2024Exploring the ListTile Widget in Flutter: A Comprehensive GuideFlutter, the open-source UI software development toolkit, has become a go-to choice for building beautiful and natively compiled applications for mobile, web, and desktop from a single codebase. One of the essential widgets in Flutter's arsenal is Li...Discuss·1 likeFlutter WidgetsFlutter
Muhammad Taimoortaimoordevelops.hashnode.dev·Nov 16, 2024Making a DraggableScrollableSheet scroll up or down using GetX (Flutter)Introduction to DraggableScrollableSheet In many mobile applications, you might have seen an area at the bottom of the screen which can be dragged up to reveal more information or dragged down to hide information. One such example is that of Google M...DiscussFlutter
Nicole Parkejolie.hashnode.dev·Nov 8, 2024FeaturedDeveloping iOS & Android Home Screen Widgets in Flutter 🪄I’m currently developing a healing journaling app called Sunrise ☀️ using Flutter. Since it’s my first time building an app, I’ve encountered numerous challenges and moments of trial and error throughout the process. Among all the features, developin...Discuss·25 likes·1.2K readsFlutter
Reme Le Haneremelehane.dev·Nov 4, 2024Flutter trick: using AnimatedBuilder for efficient animations.When you want to add animations that don’t rebuild the entire widget tree, AnimatedBuilder is an efficient way to create smooth, high-performance animations. Example: Rotating Icon Animation This example shows how to use AnimatedBuilder to smoothly r...DiscussFlutter
Geek Aidgeekaid.in·Nov 2, 2024Understanding Flutter App Lifecycle for Better App PerformanceFlutter is an open-source SDK that allows you to build cross-platform applications with a single code base. Many beginners skip learning about the app lifecycle while creating apps, just as they skip documentation. However, understanding and managing...DiscussFlutter
Yuriy Novikoveasy-flutter.hashnode.dev·Oct 20, 2024Flutter. New Disposer widgethttps://medium.com/easy-flutter/flutter-new-disposer-widget-681eeda1d9ba?sk=897c7c95919a335517e22099e8808586 1. Introduction Almost every Flutter app has a form with text fields. The text field requires TextEditingConroller. TextEditingController has...Discuss·38 readsFlutter
Reme Le Haneremelehane.dev·Sep 30, 2024Flutter trick: using LayoutBuilder for responsive designsWhen you’re building apps that need to work across different screen sizes (phones, tablets, etc.), LayoutBuilder is a powerful tool to help create adaptive UIs. It lets you access the parent widget’s constraints and make dynamic decisions based on th...DiscussFlutter