Preparing search index...
    type NumericTextInputProps = {
        testID: string;
        value: number;
        onChangeValue?: (value: number) => void;
        label?: string;
        dense?: boolean;
        right?: React.ReactNode;
        mode?: "flat" | "outlined";
        style?: StyleProp<TextStyle>;
        contentStyle?: StyleProp<TextStyle>;
        textInputStyle?: StyleProp<TextStyle>;
        underlineColor?: string;
        keyboardType?: "numeric" | "number-pad" | "decimal-pad";
        editable?: boolean;
    }
    Index

    Properties

    testID: string
    value: number
    onChangeValue?: (value: number) => void
    label?: string
    dense?: boolean
    right?: React.ReactNode
    mode?: "flat" | "outlined"
    style?: StyleProp<TextStyle>
    contentStyle?: StyleProp<TextStyle>
    textInputStyle?: StyleProp<TextStyle>
    underlineColor?: string
    keyboardType?: "numeric" | "number-pad" | "decimal-pad"
    editable?: boolean