easytext 2.0.1 copy "easytext: ^2.0.1" to clipboard
easytext: ^2.0.1 copied to clipboard

Avoid Text boiler plate with this awesome library full of helper constructors to create styled text easily.

example/README.md

Examples #

Bold Text
Txt("Hello World!!", weight: FontWeight.bold)
or
Txt.b("Hello World!!")

Italic Text
Txt("Hello World!!", italic: true);
or
Txt.i("Hello World!!");

Red text
Txt.c("Hello World!!",Colors.red)
Text with font size 22
Txt.s("Hello World!!",22)

Red text with font size 22
Txt("Hello World!!", size: 22, color: Colors.red)
or
Txt.sc("Hello World!!",22, Colors.red)

A text with headline theme
Txt.headline("Hello World!!")
Headline with custom color
Txt.headline("Hello World!!", color: Colors.red)
...and custom size
Txt.headline("Hello World!!", color: Colors.red, size: 22)

8
likes
130
pub points
27%
popularity

Publisher

verified publisherbrustol.in

Avoid Text boiler plate with this awesome library full of helper constructors to create styled text easily.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on easytext