Hierarchy (view full)

Constructors

Properties

animationInstances: AnimationInstance<Widget>[] = []
applyRoundingHack?: boolean
builder: ParagraphBuilder
centerX: number
centerY: number
children: Widget[] = []

The child-widgets of the widget.

disableHinting?: boolean
display: boolean = true
ellipsis?: string
eventInstances: EventInstance<Widget>[] = []
fillPaint: Paint
fontManager: FontMgr
hasSet: boolean = false
heightMultiplier?: number
inputOptions?: TextOptions

the options

interval?: number[]
isImplemented: boolean = false
key: string = ...
last: Widget = ...
maxLines?: number
offset?: number
paragraph: Paragraph
parent: Widget
plugins: WidgetPlugin[] = []
progress: number
replaceTabCharacters?: boolean
setups: {
    generator: Generator<number | {
        animation: Animation<any>;
        duration: number;
        mode: "async" | "sync";
        params: Record<string, any>;
        setAsync: (() => { animation: Animation<any>; mode: "async" | "sync"; duration: number; params: Record<string, any>; setAsync: () => ...; setSync: () => ...; });
        setSync: (() => { animation: Animation<any>; mode: "async" | "sync"; duration: number; params: Record<string, any>; setAsync: () => ...; setSync: () => ...; });
    }, void, unknown>;
    nextFrame: number;
}[] = []

Type declaration

  • generator: Generator<number | {
        animation: Animation<any>;
        duration: number;
        mode: "async" | "sync";
        params: Record<string, any>;
        setAsync: (() => { animation: Animation<any>; mode: "async" | "sync"; duration: number; params: Record<string, any>; setAsync: () => ...; setSync: () => ...; });
        setSync: (() => { animation: Animation<any>; mode: "async" | "sync"; duration: number; params: Record<string, any>; setAsync: () => ...; setSync: () => ...; });
    }, void, unknown>
  • nextFrame: number
strokePaint: Paint
strutStyle?: StrutStyle
style: TextStyle
text: InputItem[] = []
textAlign?: TextAlign
textDirection?: TextDirection
textHeightBehavior?: TextHeightBehavior
updates: ((elapsed, widget) => void)[] = []

Type declaration

    • (elapsed, widget): void
    • Parameters

      Returns void

x: number
y: number

Accessors

  • get range(): WidgetRange
  • The range of the widget, taking into account the children. To be noted that this method should not be overridden.

    Returns WidgetRange

    The range of the widget.

Methods

  • Parameters

    • animation: Animation<any>
    • startAt: number
    • during: number
    • Optional params: Record<string, any>

    Returns this

  • Draw the object according to the parameters of the widget. Called when the parameters is changed.

    Parameters

    • canvas: Canvas

      The canvas object of CanvasKit-WASM.

    Returns void

  • Preload the necessary items during drawing. Called when the properties of the widget is changed. In common, we use it to initializing Paint, Rect, Path, etc.

    Parameters

    • ck: CanvasKit

      The namespace of CanvasKit-WASM.

    • propertyChanged: string

      The changed property of this widget

    Returns void

  • Called when the parameters is changed.

    Parameters

    • ck: CanvasKit

      The namespace of CanvasKit-WASM.

    • Optional propertyChanged: string

    Returns void

  • Set up a update function to call it when the widget is changed.

    Parameters

    • updateFunc: ((elapsed, widget) => void)

      The frame from having gone to current frame.

        • (elapsed, widget): void
        • Parameters

          Returns void

    Returns this

  • Update the object according to the style of the widget. Called when the style is changed.

    Parameters

    • canvas: Canvas

      The canvas object of CanvasKit-WASM.

    Returns void