Type alias ProgressIndicatorProps

ProgressIndicatorProps: {
    children?: React.ReactNode;
    componentProps?: ViewProps;
    disabled?: boolean;
    firstStep?: boolean;
    onPress?: ((value, event) => void);
    open?: boolean;
    status?: "complete" | "in-progress" | "invalid" | "pending";
    style?: StyleProp<ViewStyle>;
    subText?: string;
    title: string;
}

Props for ProgressIndicator component

Type declaration

  • Optional children?: React.ReactNode

    Children to render

  • Optional componentProps?: ViewProps

    Direct props to set on the React Native component (including iOS and Android specific props). Most use cases should not need this.

  • Optional disabled?: boolean

    Indicate if disabled

  • Optional firstStep?: boolean

    Indicate if item is first accordion loaded (if using group. Set true if single accordion)

  • Optional onPress?: ((value, event) => void)
      • (value, event): void
      • On press callback. Component will toggle open automatically.

        Parameters

        • value: boolean
        • event: GestureResponderEvent

        Returns void

  • Optional open?: boolean

    Indicate if open. Component handles open changes.

  • Optional status?: "complete" | "in-progress" | "invalid" | "pending"

    Status of the progress (defaults to pending)

  • Optional style?: StyleProp<ViewStyle>

    Style to set on the item

  • Optional subText?: string

    Sub text to show for the accordion (on right side)

  • title: string

    Title to show for the accordion

Generated using TypeDoc