Preparing search index...
    type AppBarProps = {
        onGoBack: () => void;
        title?: string;
        testID: string;
        isEditing?: boolean;
        onCancel?: () => void;
        onValidate?: () => Promise<void>;
        onDelete?: () => void;
        onEdit?: () => void;
    }
    Index

    Properties

    onGoBack: () => void
    title?: string
    testID: string
    isEditing?: boolean
    onCancel?: () => void
    onValidate?: () => Promise<void>
    onDelete?: () => void
    onEdit?: () => void