TextWidthBasis enum Null safety
The different ways of measuring the width of one or more lines of text.
See Text.textWidthBasis, for example.
Constructors
- TextWidthBasis()
-
const
Values
- parent → const TextWidthBasis
-
multiline text will take up the full width given by the parent. For single line text, only the minimum amount of width needed to contain the text will be used. A common use case for this is a standard series of paragraphs.
TextWidthBasis()
- longestLine → const TextWidthBasis
-
The width will be exactly enough to contain the longest line and no longer. A common use case for this is chat bubbles.
TextWidthBasis()
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
TextWidthBasis> -
A constant List of the values in this enum, in order of their declaration.
[parent, longestLine]