interface CreateLabelOptions {
    color: Scriptable<string>;
    coordinates: CreateLabelOptionsCoordinates;
    horizontalAlignment: TextStyleAlign;
    maxLines?: number;
    maxWidth?: number;
    size?: number;
    text: Scriptable<CreateLabelOptionsText>;
}

Properties

color: Scriptable<string>

Coordinates that can be used to precisely define where the Label should be on the screen

horizontalAlignment: TextStyleAlign
maxLines?: number
maxWidth?: number
size?: number