Bigyanicnotes.bigyantimilsina.com.np·Dec 17, 2024From Educator to Developer: Starting with FlutterToday marks the start of a new journey—and it’s an extra special day because it’s my 25th birthday! I am kicking off my learning journey with Flutter, and this blog will serve as a weekly checkpoint to document my progress, reflect on my experiences,...Flutter
Parth Shethparthshethflutterdeveloper.hashnode.dev·Dec 16, 2024Exploring the Flutter ExpansionTile: A Comprehensive GuideThe ExpansionTile widget in Flutter is a great tool for displaying a list of items that can expand or collapse. This widget is useful for creating expandable/collapsible sections within your app, often used for things like FAQs, menus, or lists with ...Flutter Widgetsflutter expansion tile
Encodedots Technolabsencodedots.hashnode.dev·Dec 13, 2024Flutter 3.27 Release OverviewIntroduction Welcome to Flutter 3.27! This release is packed with exciting updates designed to enhance your development experience and elevate your app’s performance. Flutter 3.27 brings improvements across the framework, engine, and ecosystem, with ...56 readsFlutter
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
Aniket Acharyadevutter.hashnode.dev·Dec 13, 2024App Layout and StructuresThis code simply depicts the basic structure of layout for any mobile application .In flutter scaffold provides the visual for a material design application. Here are some of elements that scaffold can include: AppBar: It defines the appbar at th...1 likeFlutter
Parth Shethparthshethflutterdeveloper.hashnode.dev·Dec 13, 2024Understanding Flutter's Scaffold Widget: Properties and Constructors ExplainedFlutter's Scaffold widget is one of the most essential and commonly used widgets when developing applications. It provides a basic structure for building a visual layout, and it serves as the "skeleton" that holds many of your app's UI elements such ...Flutter WidgetsFlutter
Parth Shethparthshethflutterdeveloper.hashnode.dev·Dec 12, 2024Understanding Flutter AppBar Widget: Properties and Constructors ExplainedIn Flutter, the AppBar widget plays a crucial role in creating the top navigation bar for your mobile app. It’s a staple component for most apps, often used to display the app's title, navigation controls, and actions. Whether you're building simple ...Flutter WidgetsFlutter
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 10, 2024Flutter Drawer Widget: All Properties in DetailThe Drawer widget in Flutter is used for creating a slide-in menu typically displayed on the left side of the screen. It is most commonly used for app navigation, offering users quick access to different sections of the app. Properties of Drawer Wid...Flutter Widgetsdrawer widget
Parth Shethparthshethflutterdeveloper.hashnode.dev·Dec 9, 2024Flutter IconButton Widget: A Complete Guide with ExamplesIn Flutter, an IconButton is a widget that combines an icon and a clickable button, which allows developers to create interactive icons that perform actions when tapped. The IconButton widget is widely used in mobile apps for toolbars, navigation bar...Flutter Widgetsiconbutton widget