TextWidthBasis enum

The different ways of measuring the width of one or more lines of text.

See Text.textWidthBasis, for example.

Inheritance

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.

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.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent 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.