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.

easytext popularity likes pub points #

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

Getting Started #

Include the package at your source code import 'package:easytext/easytext.dart

then #

This
Text("Hello World!!", style: TextStyle(fontWeight: FontWeight.bold))
became
Txt("Hello World!!", weight: FontWeight.bold)
or
Txt.b("Hello World!!")

And this
Text("Hello World!!", style: TextStyle(fontStyle: FontStyle.italic));
became
Txt("Hello World!!", italic: true);
or
Txt.i("Hello World!!");

And also this
Text("Hello World!!", style: TextStyle(color: Colors.red, fontSize: 22))
became
Txt("Hello World!!", size: 22, color: Colors.red)
or
Txt.sc("Hello World!!",22, Colors.red)

Want to change just the color? Use this Txt.c("Hello World!!",Colors.red)
or just the size? Try Txt.s("Hello World!!",22).

You can also work with themes #

Where this
Txt("Hello World!!", style: Theme.of(context).textTheme.headline)
became
Txt.headline("Hello World!!")
Same for all other themes.

8
likes
90
points
78
downloads

Publisher

verified publisherbrustol.in

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on easytext