noodle_text

Last updated:

0 purchases

noodle_text Image
noodle_text Images
Add to Cart

Description:

noodle text

NoodleText #
What is NoodleText? #
A simple alternative to Flutter RichText to a using classic html tags like <b>, <i>.
Example #
Column(
children: [
NoodleText(
'Example of <b>bold text</b>',
style: const TextStyle(fontSize: 24),
),
NoodleText(
'Example of <i>italic text</i>',
style: const TextStyle(fontSize: 24),
),
NoodleText(
'Example of <u>underline text</u>',
style: const TextStyle(fontSize: 24),
),
NoodleText(
'Example of <c>color</c> <c>text</c>',
style: const TextStyle(fontSize: 24),
spanColors: const [Colors.blue, Colors.red],
),
NoodleText(
'Example <b><c>of</c></b> <i>multiple</i> <c><u>styles</u></c>',
style: const TextStyle(fontSize: 24),
spanColors: const [Colors.blue, Colors.red],
),
],
);
copied to clipboard
The result will be:

Request updates #

To request updates or fixes, please open a pull request on Github.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.