jinali.hashnode.devMaterialApp WidgetIt is likely the main or core component of a flutter app. The MaterialApp widget provides a wrapper around other Material Widgets. We can access all the other components and widgets provided by Flutter SDK. Attributes and Properties: home: The widge...Aug 3, 2024·3 min read
jinali.hashnode.devContainer Widget in FlutterContainer class in flutter is a convenience widget that combines common painting, positioning, and sizing of widgets. A basic container element that stores a widget has a margin, which separates the present container from other contents. The total co...Apr 11, 2024·2 min read
jinali.hashnode.devCode FormattingAutomatically formatting code in VS Code Install the Flutter extension (see Editor setup) to get automatic formatting of code in VS Code. To automatically format the code in the current source code window, right-click in the code window and select Fo...Apr 11, 2024·1 min read
jinali.hashnode.devAutomated FixesFlutter provides a tool to help clean up deprecated APIs from your codebase. The tool ships as part of Flutter, and suggests changes that you might want to make to your code. The tool is available from the command line. (Tip These automated updates a...Apr 11, 2024·1 min read
jinali.hashnode.devFlutter and the pubspec fileEvery Flutter project includes a pubspec.yaml file, often referred to as the pubspec. A basic pubspec is generated when you create a new Flutter project. It's located at the top of the project tree and contains metadata about the project that the Dar...Apr 11, 2024·2 min read