Skip to content
cropped cropped flutter assets logo square.png
  • Various
  • Apps
  • UI
  • Menu
  • Elements
  • Basics
  • Packages
Search
cropped cropped flutter assets logo square.png
  • Cookie Policy
  • Privacy Policy
  • Tags

Quick Tip – How to make Flutter bold text

Basics

What is the Flutter bold font? In Flutter, the fontWeight property of the TextStyle class determines the boldness of the font. The fontWeight property takes a value from the FontWeight enum, which has a range of values from 100 to 900. The higher the value, the more bold the font will be. For example, you …

Quick Tip – How to make Flutter bold text Read More »

Quick Tip – How to use special characters in Flutter

Basics

Special characters in Flutter I think every programing language uses special characters. They are used everywhere. So, what are the special characters? A simple explanation will be, special characters are all symbols that cannot be rendered as text. In Flutter, you can use special characters in your text by specifying the Unicode character code for …

Quick Tip – How to use special characters in Flutter Read More »

Quick Tip – How to break a Text / String into multiple lines in Flutter

Basics

In Flutter, the Text widget is used to display a short piece of text. It is a lightweight widget that allows you to display a small amount of rich text or a simple string. The text widget is the most used element in Flutter. Basically, it is used almost everywhere. It is used in buttons, …

Quick Tip – How to break a Text / String into multiple lines in Flutter Read More »

What is and how to use the Text widget in Flutter with examples

Basics

What is a Text widget in Flutter In Flutter, the Text widget is used to display a short piece of text. It is a single line of non-editable text that is designed to be lightweight and efficient, allowing you to display text in your Flutter app quickly and easily. The Text widget has a number …

What is and how to use the Text widget in Flutter with examples Read More »

How to use Container BoxDecoration in Flutter with examples

Basics

What is the Flutter BoxDecoration In Flutter, the BoxDecoration of a Container widget specifies the visual appearance of the container. It allows you to decorate the background of the container with a colour, gradient, image, or a combination of these. You can use BoxDecoration to create a variety of visual effects, such as adding a …

How to use Container BoxDecoration in Flutter with examples Read More »

What is a Container in Flutter and how to use it with ease

Basics

What is a Container widget in Flutter? The container in Flutter is a parent widget that can contain multiple child widgets and manage them efficiently through width, height, padding, background color, etc. It is a widget that combines common painting, positioning, and sizing of the child widgets. It is also a class to store one or more …

What is a Container in Flutter and how to use it with ease Read More »

How to add a gradient background colour in Flutter?

Basics

What is a colour gradient? In computer graphics, a colour gradient specifies a range of position-dependent colours, usually used to fill a region. In other words, it starts with one colour and position and ends with another colour and position. A colour gradient is also known as a colour ramp or a colour progression. In assigning colours to a set of values, …

How to add a gradient background colour in Flutter? Read More »

Most common Flutter Buttons types: The Guide with examples

Basics

In Flutter, a button is a widget that allows the user to interact with the app by tapping on it. A button typically displays a text label or an icon, and it can be customized with various features such as colours, shapes, and actions. Buttons in Flutter are built using the TextButton, ElevatedButton, or OutlineButton …

Most common Flutter Buttons types: The Guide with examples Read More »

Flutter Basics – How to use an image in Flutter with examples

Basics

What is the Flutter Image widget? The Flutter Image widget is a very useful tool for displaying images in your Flutter app. It is one of the basic building blocks of any Flutter app, and it is easy to use. To display an image in your app, you simply need to specify the image parameter …

Flutter Basics – How to use an image in Flutter with examples Read More »

Flutter Basics – How to use Icons in Flutter with ease

Basics

Icons are a commonly used element in user interfaces, as they can effectively communicate meaning and add visual interest. They can be used in place of text, such as for a home icon or a share icon, and can also be used in conjunction with the text to add visual appeal. In this post, we …

Flutter Basics – How to use Icons in Flutter with ease Read More »

Posts pagination
← Previous Page 1 … 11 12 13 Next Page →

Categories

  • Apps (3)
  • Basics (73)
  • Menu (6)
  • Packages (16)
  • UI (4)
  • Various (49)

Recent Posts

  • How to use Flutter Checkbox widget – guide with examples
  • How to use Flutter Radio buttons – guide with examples
  • How to create colour swatches in Flutter using the Chip widget
  • How to customize the Flutter ActionChip widget with ease
  • How to customize the Flutter FilterChip widget with ease
  • Cookie Policy
  • Tags
  • Privacy Policy

Copyright © 2025 Flutter Assets