#development
Read more stories on Hashnode
Articles with this tag
Row Image : MultiChild Widget Align all children Widgets in a horizontal direction Example : import 'package:flutter/material.dart'; void main()...
AppBar class : A Material Design app bar. An app bar consists of a toolbar and potentially other widgets, such as a TabBar and a FlexibleSpaceBar....
What is a text widget ? The function of displaying a string in a Flutter app is handled by a text widget, as we know everything Flutter offers to...
Stateless WidgetStateful Widget Static widgetsDynamic Widgets They do not depend on any data change or any behaviour change.They can be updated...
What is Stateful Widgets ? Stateful widgets in Flutter are those that can change their state over time. The changes could be in user interactions or...
What is MaterialApp class? MaterialApp class is an application that uses material design. It is a convenience widget that wraps several widgets that...