auto_size_styled_text

Creator: coderz1093

Last updated:

0 purchases

auto_size_styled_text Image
auto_size_styled_text Images

Languages

Categories

Add to Cart

Description:

auto size styled text

AutoSizeStyledText #
Text widget with formatted text using tags. Makes it easier to use formatted text in multilingual applications.(styled_text) Combined with auto_size_text that automatically resizes text to fit perfectly within its bounds.
Table of Contents #

Getting Started
Usage examples

Getting Started #
In your flutter project add the dependency:
dependencies:
...
auto_size_styled_text: ^[version]
copied to clipboard
Import package:
import 'package:auto_size_styled_text/auto_size_styled_text.dart';
copied to clipboard
Usage Examples #
AutoSizeStyledText(
text: 'Test: <bold>bold</bold> and <red>red color</red> text.',
tags: {
'bold': AutoSizeStyledTextTag(style: TextStyle(fontWeight: FontWeight.bold)),
'red': AutoSizeStyledTextTag(style: TextStyle(fontWeight: FontWeight.bold, color: Colors.red)),
},
)
copied to clipboard

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.