FluentText class
A localized Text.rich — the Localized component of
fluent-react, Flutter-shaped. Formats id through the nearest
FluentLocalization and renders inline markup via tags /
styles.
FluentText(
'banner', // banner = Try <bold>{ $plan }</bold>!
args: {'plan': 'Pro'},
styles: {'bold': TextStyle(fontWeight: FontWeight.bold)},
)
Tap handling goes through a tags builder; the recognizer's
lifecycle is the caller's (create it in a State, dispose it
there — see FluentTagBuilder).
- Inheritance
-
- Object
- DiagnosticableTree
- Widget
- StatelessWidget
- FluentText
Constructors
-
FluentText(String id, {Key? key, String? attribute, Map<
String, Object?> args = const {}, Map<String, FluentTagBuilder> tags = const {}, Map<String, TextStyle> styles = const {}, void onUnknownTag(FluentMarkupSpan node)?, TextStyle? style, TextAlign? textAlign, TextOverflow? overflow, int? maxLines, bool? softWrap}) -
Renders the message
id(or itsattribute).const
Properties
-
args
→ Map<
String, Object?> -
The message's
$variablearguments.final - attribute → String?
-
Format this attribute of id instead of its value.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- id → String
-
The message id to format.
final
- key → Key?
-
Controls how one widget replaces another widget in the tree.
finalinherited
- maxLines → int?
-
Passed through to Text.rich.
final
- onUnknownTag → void Function(FluentMarkupSpan node)?
-
Unknown-tag callback — see fluentSpansToInline. Null asserts in
debug on a tag with no builder and no style.
final
- overflow → TextOverflow?
-
Passed through to Text.rich.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- softWrap → bool?
-
Passed through to Text.rich.
final
- style → TextStyle?
-
Base style for the whole message (markup styles merge over it).
final
-
styles
→ Map<
String, TextStyle> -
Per-tag text styles — see fluentSpansToInline.
final
-
Per-tag span builders — see fluentSpansToInline.
final
- textAlign → TextAlign?
-
Passed through to Text.rich.
final
Methods
-
build(
BuildContext context) → Widget -
Describes the part of the user interface represented by this widget.
override
-
createElement(
) → StatelessElement -
Creates a StatelessElement to manage this widget's location in the tree.
inherited
-
debugDescribeChildren(
) → List< DiagnosticsNode> -
Returns a list of DiagnosticsNode objects describing this node's
children.
inherited
-
debugFillProperties(
DiagnosticPropertiesBuilder properties) → void -
Add additional properties associated with the node.
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toDiagnosticsNode(
{String? name, DiagnosticsTreeStyle? style}) → DiagnosticsNode -
Returns a debug representation of the object that is used by debugging
tools and by DiagnosticsNode.toStringDeep.
inherited
-
toString(
{DiagnosticLevel minLevel = DiagnosticLevel.info}) → String -
A string representation of this object.
inherited
-
toStringDeep(
{String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug, int wrapWidth = 65}) → String -
Returns a string representation of this node and its descendants.
inherited
-
toStringShallow(
{String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) → String -
Returns a one-line detailed description of the object.
inherited
-
toStringShort(
) → String -
A short, textual description of this widget.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited