0 purchases
styled text advance
StyledTextAdvance #
Text widget with formatted text using tags. Makes it easier to use formatted text in multilingual applications.
Formatting is set in the text using xml tags, for which styles and other behaviors are defined separately. It is also possible to insert icons and widgets through tags.
You can set the click handler for the tag, through a tag definition class StyledTextAdvanceActionTag.
Table of Contents #
Getting Started
Escaping & special characters
Line breaks
Usage examples
How to insert a widget into text
Getting Started #
In your flutter project add the dependency:
dependencies:
...
styled_text_advance: ^[version]
copied to clipboard
Import package:
import 'package:styled_text_advance/styled_text_advance.dart';
copied to clipboard
Escaping & special characters #
Tag attributes must be enclosed in double quotes, for example: <link href="https://flutter.dev">.
You need to escape specific XML characters in text:
Original character Escaped character
------------------ -----------------
" "
' '
& &
< <
> >
<space> &space;
copied to clipboard
Line breaks #
By default, line breaks are not ignored, all line breaks \n are automatically translated into the <br/> tag. To disable this behavior, you can set the newLineAsBreaks parameter to false and insert the <br/> tag where you want to break to a new line.
Usage examples #
An example of making parts of text bold: #
StyledTextAdvance(
text: 'Test: <bold>bold</bold> text.',
tags: {
'bold': StyledTextAdvanceTag(style: TextStyle(fontWeight: FontWeight.bold)),
},
)
copied to clipboard
Example of highlighting a part of the text by different styles: #
StyledTextAdvance(
text: 'Test: <bold>bold</bold> and <red>red color</red> text.',
tags: {
'bold': StyledTextAdvanceTag(style: TextStyle(fontWeight: FontWeight.bold)),
'red': StyledTextAdvanceTag(style: TextStyle(fontWeight: FontWeight.bold, color: Colors.red)),
},
)
copied to clipboard
Example of inserting icons into the text: #
StyledTextAdvance(
text: 'Text with alarm <alarm/> icon.',
tags: {
'alarm': StyledTextAdvanceIconTag(Icons.alarm),
},
)
copied to clipboard
Example of using a tag handler: #
StyledTextAdvance(
text: 'Text with <link href="https://flutter.dev">link</link> inside.',
tags: {
'link': StyledTextAdvanceActionTag(
(String? text, Map<String?, String?> attrs) => {
final String link = attrs['href'];
print('The "$link" link is tapped.');
},
style: TextStyle(decoration: TextDecoration.underline),
),
},
)
copied to clipboard
Example of using a custom tag attributes handler, highlights text with the color specified in the "text" attribute of the tag: #
StyledTextAdvance(
text: 'Text with custom <color text="#ff5500">color</color> text.',
tags: {
'color': StyledTextAdvanceCustomTag(
baseStyle: TextStyle(fontStyle: FontStyle.italic),
parse: (baseStyle, attributes) {
if (attributes.containsKey('text') &&
(attributes['text'].substring(0, 1) == '#') &&
attributes['text'].length >= 6) {
final String hexColor = attributes['text'].substring(1);
final String alphaChannel = (hexColor.length == 8) ? hexColor.substring(6, 8) : 'FF';
final Color color = Color(int.parse('0x$alphaChannel' + hexColor.substring(0, 6)));
return baseStyle.copyWith(color: color);
} else {
return baseStyle;
}
}),
},
)
copied to clipboard
An example of inserting an input field widget in place of a tag: #
StyledTextAdvance(
text: 'Text with <input/> inside.',
tags: {
'input': StyledTextAdvanceWidgetTag(
TextField(
decoration: InputDecoration(
hintText: 'Input',
),
),
size: Size.fromWidth(200),
constraints: BoxConstraints.tight(Size(100, 50)),
),
},
)
copied to clipboard
An example of using a widget with the ability to select rich text: #
StyledTextAdvance.selectable(
text: 'Test: <bold>bold</bold> text.',
tags: {
'bold': StyledTextAdvanceTag(style: TextStyle(fontWeight: FontWeight.bold)),
},
)
copied to clipboard
Specifying the text style #
NEW
StyledTextAdvance(
text: 'Example: <b>bold</b> text.',
tags: {
'b': StyledTextAdvanceTag(style: TextStyle(fontWeight: FontWeight.bold)),
},
)
copied to clipboard
NEW
StyledTextAdvance(
text: 'Text with alarm <alarm/> icon.',
tags: {
'alarm': StyledTextAdvanceIconTag(Icons.alarm),
},
)
copied to clipboard
Specifying a tap handler #
NEW
StyledTextAdvance(
text: 'Text with <link href="https://flutter.dev">link</link> inside.',
tags: {
'link': StyledTextAdvanceActionTag(
(_, attrs) => _openLink(context, attrs),
style: TextStyle(decoration: TextDecoration.underline),
),
},
)
copied to clipboard
NEW
StyledTextAdvance(
text: 'Text with custom <color text="#ff5500">color</color> text.',
tags: {
'color': StyledTextAdvanceCustomTag(
baseStyle: TextStyle(fontStyle: FontStyle.italic),
parse: (baseStyle, attributes) {
// Parser code here...
}),
},
)
copied to clipboard
Specifying the image handler #
IMAGE
StyledTextAdvance(
text:
'Here is a local image: <img>assets/image.jpg</img> and a network image: <img>https://example.com/image.jpg</img>.',
tags: {
'img': StyledTextAdvanceImageTag(
width: 100,
height: 100,
fit: BoxFit.cover,
),
},
),
copied to clipboard
Specifying the Audio style #
AUDIO
StyledTextAdvance(
text: 'Here is a local audio file: <audio>assets/happy-day-148320.mp3</audio> and a network audio file: <audio>https://example.com/audio.mp3</audio>.',
tags: {
'audio': StyledTextAdvanceAudioTag(
onTap: (String? text, Map<String?, String?>? attributes) {
// Handle audio play action here. This might involve using the 'audioplayers' package
// to play the audio file specified in `text` or an attribute.
},
),
},
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.