Rezi
    Preparing search index...

    Type Alias FilePickerProps

    FilePickerProps: Readonly<
        {
            accessibleLabel?: string;
            data: FileNode
            | readonly FileNode[];
            expandedPaths: readonly string[];
            filter?: string;
            focusable?: boolean;
            focusConfig?: FocusConfig;
            id: string;
            key?: string;
            modifiedPaths?: readonly string[];
            multiSelect?: boolean;
            onChange: (path: string, expanded: boolean) => void;
            onPress: (path: string) => void;
            onSelect: (path: string) => void;
            onSelectionChange?: (paths: readonly string[]) => void;
            rootPath: string;
            selectedPath?: string;
            selection?: readonly string[];
            selectionStyle?: TextStyle;
            showHidden?: boolean;
            stagedPaths?: readonly string[];
        },
    > & LayoutConstraints

    Props for FilePicker widget. Browse and select workspace files.