Type alias LoadingProps

LoadingProps: {
    loadingText?: string;
    style?: StyleProp<ViewStyle>;
    type?: "large" | "medium" | "small";
}

Props for Loading component

Type declaration

  • Optional loadingText?: string

    Text to use for loader (accessibility). Defaults to ENGLISH "Loading"

  • Optional style?: StyleProp<ViewStyle>

    Style to set on the item

  • Optional type?: "large" | "medium" | "small"

    Indicates type of loading spinner (large is default)

Generated using TypeDoc