Text Widget in Flutter

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 style the UI is a widget. The text widget can simply be used by creating the text widget class and pass... https://jeetbhalu.hashnode.dev/text-widget-in-flutter

Container Widget in Flutter

Container 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... https://jinali.hashnode.dev/container-widget-in-flutter

Stateless Widget in Flutter

What is Stateless Widget ?

Flutter Stateless widgets are those components that describe a part of the user interface which can be determined only by configurations in the constructor. They don't store mutable states. Examples of Stateless widgets ar... https://jeetbhalu.hashnode.dev/stateless-widget-in-flutter

Container Class in Flutter

What is Container ?

A Container is a Box. You can specify height , width , color , margin and padding etc. and in the below example.

EdgeInsets.all means all direction (top , bottom , left , right).

Example : import 'package:flutter/material.dart... https://jeetbhalu.hashnode.dev/container-class-in-flutter

MaterialApp Class in Flutter

What is MaterialApp class?

MaterialApp class is an application that uses material design.

It is a convenience widget that wraps several widgets that are commonly required for material design applications.

const MaterialApp({ Key key, GlobalKey<Na... https://jeetbhalu.hashnode.dev/materialapp-class-in-flutter

Flutter and the pubspec file

Every 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... https://jinali.hashnode.dev/flutter-and-the-pubspec-file

Scaffold Class in Flutter

What is Scaffold ?

A Scaffold Widget provides a framework which implements the basic material design visual layout structure of the flutter app. It provides APIs for showing drawers, snack bars and bottom sheets. Have a look at its constructor and t... https://jeetbhalu.hashnode.dev/scaffold-class-in-flutter

Automated Fixes

Flutter 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... https://jinali.hashnode.dev/automated-fixes

Code Formatting

Automatically 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... https://jinali.hashnode.dev/code-formatting

An In-Depth Guide to Leveraging MVVM Architecture in Flutter App Development

In today’s tech-driven era, mobile applications have become an integral part of our daily lives. From simplifying tasks to providing entertainment, mobile apps cater to a wide range of user needs. Recognizing the significance of mobile apps, business... https://sumitchauhan07.hashnode.dev/an-in-depth-guide-to-leveraging-mvvm-architecture-in-flutter-app-development


Search