Preparing search index...

    Stack navigator parameter list defining all modal-style screens Maps screen names to their required parameters

    type StackScreenParamList = {
        Tabs: React.JSX.Element;
        Recipe: RecipePropType;
        LanguageSettings: undefined;
        DefaultPersonsSettings: undefined;
        IngredientsSettings: undefined;
        TagsSettings: undefined;
        BulkImportSettings: undefined;
        BulkImportDiscovery: { providerId: string };
        BulkImportValidation: {
            providerId: string;
            selectedRecipes: ConvertedImportRecipe[];
        };
        BugReport: undefined;
    }
    Index

    Properties

    Tabs: React.JSX.Element

    Main tab navigator (no parameters)

    Recipe screen with mode and data parameters

    LanguageSettings: undefined

    Language selection screen (no parameters)

    DefaultPersonsSettings: undefined

    Default persons setting screen (no parameters)

    IngredientsSettings: undefined

    Ingredient management screen (no parameters)

    TagsSettings: undefined

    Tag management screen (no parameters)

    BulkImportSettings: undefined

    Bulk import provider selection screen (no parameters)

    BulkImportDiscovery: { providerId: string }

    Bulk import discovery screen with provider ID

    BulkImportValidation: {
        providerId: string;
        selectedRecipes: ConvertedImportRecipe[];
    }

    Bulk import validation screen with selected recipes

    BugReport: undefined

    Bug report screen (no parameters)