GF Flutter Typography

GF Flutter Typography

Flutter Typography is the art of arranging letters according to the need in order to make a clean styling of texts and words.

GF Flutter Typography

GFTypography is a Flutter Typography that arranges the texts in a clean pattern with font-weight, the font size in order to give a stylish and smooth effect to the words.

The simple GFTypography code is as shown below

import 'package:getwidget/getwidget.dart';

GFTypography(
  text: 'GF Header Typo1',
),

GF Flutter Font Size

GFTypograhy comes in different sizes that vary from Typo1 to Typo6. The below code shows Typo1 example.

import 'package:getwidget/getwidget.dart';

GFTypography(
  text: 'GF Header Typo1',
  type: GFTypographyType.typo1,
),

GF Flutter Fonts With Icon

flutter font with icon

GFTypography comes with different type and it can be used with any kind of icon. The usual usage can be a GFAvatar to show the image and the name as shown in the below example.

import 'package:getwidget/getwidget.dart';

 GFTypography(
   text: 'GF Header Typo1',
   type: GFTypographyType.typo1,
   icon: Icon(Icons.send),
 ),

GF Flutter fonts on Background Image

fonts on background image

GFTypography can have a background image in it and the text or icon with the text on it. The background image gives a more specific feature to GFTypography. The below code shows the GFTypography on BackgroundImage.

import 'package:getwidget/getwidget.dart';

GFTypography(
  text: 'GF Header Typo1',
  type: GFTypographyType.typo1,
  icon: Icon(Icons.send),
  backgroundImage: AssetImage('asset image here'),
),

GFTypography Custom Properties

The look and feel can be customized using GFTypography properties.

NameDescription
childchild of type Widget alternative to text Key
dividerColordefines the color of the divider
textColordefines the color of the text
dividerBorderRadiusthe border radius of the divider
dividerAlignmentthe alignment of the divider to start, center or end
showDividerbool value to hide or show divider , defaults to true
dividerWidththe width of the divider
backgroundImagecolorFiltercolorFilter of background image only when background image is available

Last Updated: September 27, 2023