Preparing search index...

    Props for the RoundButton component

    type RoundButtonProps = {
        icon: IconName;
        size: "small" | "medium" | "large";
        onPressFunction: () => void;
        testID: string;
        style?: StyleProp<ViewStyle>;
    }
    Index

    Properties

    icon: IconName

    Icon name from the app's icon set

    size: "small" | "medium" | "large"

    Size of the button

    onPressFunction: () => void

    Function called when button is pressed

    testID: string

    Unique identifier for testing and accessibility

    style?: StyleProp<ViewStyle>

    Custom styles for the button container