interface TextOptions {
    centerX?: number;
    centerY?: number;
    children?: Widget[];
    progress?: number;
    style?: TextStyle;
    textAlign?: TextAlign;
    width?: number;
    x?: number;
    y?: number;
}

Hierarchy (view full)

Properties

centerX?: number
centerY?: number
children?: Widget[]
progress?: number
style?: TextStyle
textAlign?: TextAlign

The alignment of the text within its container.

width?: number
x?: number
y?: number