Bottom overlay

A bottom-aligned overlay container for actions or supporting content.

A bottom-aligned overlay container for actions or supporting content.

Public API

  • FBottomOverlay

Example

ZStack {
    ScrollView {
        pageContent
    }

    FBottomOverlay {
        FButton(
            horizontalSizingMode: .fillContainer,
            title: "Continue"
        ) {
            continueFlow()
        }
    }
}

Source

This reference follows Sources/FreakUI/Components/Layout/FBottomOverlay.swift. Component-specific configuration is documented under the public initializer, modifier, and supporting types in that source file.