fakhir hassanfakhirhassan.hashnode.dev·Jan 26, 2025Using GestureDetector Instead of TextButton and FlatButton in FlutterIntroduction With recent Flutter updates, FlatButton has been deprecated in favor of TextButton, ElevatedButton, and OutlinedButton. However, when working with tappable images or widgets that do not look like traditional buttons, GestureDetector prov...Flutter App DevelopmentFlutter
fakhir hassanfakhirhassan.hashnode.dev·Jan 25, 2025Using Card Instead of Container in Flutter: A Better ApproachFlutter provides multiple ways to design UI elements, and choosing the right widget can improve both functionality and readability. In this article, I’ll walk you through how I built a simple developer profile card using Card instead of Container and...Flutter
MD AKHLAK UD JAMANdictionary-app.hashnode.dev·Jan 10, 2025Developing a Smart and User-Friendly Dictionary App with FlutterIntroduction As a Flutter developer, I enjoy building applications that simplify everyday tasks. My latest project, a Dictionary App, is designed to provide quick and accurate word definitions with a clean and intuitive interface. This project was an...dictionary
Manoj Kulkarnimanojkulkarni.hashnode.dev·Dec 16, 2024How To Update Flutter To Latest Version?Introduction: In this article, we will guide you through the step-by-step process of updating the Flutter SDK to the latest version. How To Check Current Flutter SDK Version: To check current Flutter SDK version follow below steps: Open up terminal ...upgrade flutter sdk
Aniket Acharyadevutter.hashnode.dev·Dec 13, 2024Exploring Scaffold and WidgetsHere’s a quick rundown of what I implemented: AppBar: Added a title with custom styling (font size, colors, and alignment). Body: Positioned styled text ("ANIKET BODY") in the center using the Center widget, adding custom fonts and letter spacing. ...1 likeFlutter
Parth Shethparthshethflutterdeveloper.hashnode.dev·Dec 11, 2024Understanding Flutter PopupMenuButton: A Detailed GuideIn Flutter, creating rich, interactive user interfaces is easy thanks to its flexible and widget-centric architecture. One of the widgets that provide a simple way to display menus or options in a pop-up style is the PopupMenuButton. This widget allo...Flutter Widgetsflutter popupmenu button
Parth Shethparthshethflutterdeveloper.hashnode.dev·Dec 6, 2024A Comprehensive Guide to the Switch Widget in FlutterThe Switch widget in Flutter allows users to toggle between two states (usually "on" and "off"). It is part of the material design library and is widely used for enabling or disabling a setting in apps. In this blog, we will dive deep into the Switch...Flutter WidgetsFlutter Switch Widget
Parth Shethparthshethflutterdeveloper.hashnode.dev·Dec 3, 2024Understanding Flutter's TextButton Widget: Properties and ExampleIn Flutter, the TextButton widget is one of the most commonly used buttons that adheres to Material Design principles. Unlike the ElevatedButton and OutlinedButton, which have background colors and borders, the TextButton is typically used when you n...Flutter Widgetsflutter text button
Parth Shethparthshethflutterdeveloper.hashnode.dev·Dec 2, 2024Understanding Flutter's ElevatedButton Widget: Properties and ExampleIn Flutter, UI components are essential for creating interactive and visually appealing mobile applications. One of the most commonly used widgets for creating interactive buttons is the ElevatedButton. It’s part of the material design widgets in Flu...Flutter WidgetsFlutter
Parth Shethparthshethflutterdeveloper.hashnode.dev·Nov 29, 2024Exploring the Flutter Card Widget: A Comprehensive GuideThe Card widget in Flutter is one of the most widely used and flexible widgets for building material design UIs. Cards are commonly used to represent a piece of information, often with a rounded rectangular shape, that includes text, images, icons, o...Flutter WidgetsCard Widget