BPKBottomSheetContentMode

public enum BPKBottomSheetContentMode
  • The sheet shows in full screen Sheet is expansible Use Spacer in your content to define expansion behaviour

    Declaration

    Swift

    case large
  • The sheet shows at half the screen Sheet is only expansible if expansible is set to true. Use Spacer in your content to define expansion behaviour

    Declaration

    Swift

    case medium(_: Bool)
  • The sheet shows at half the screen Sheet is expansible Use Spacer in your content to define expansion behaviour

    Declaration

    Swift

    public static let medium: BPKBottomSheetContentMode
  • The sheet resizes to fit its content Sheet is not expansible Usage of Spacer in your content is not recommended

    Declaration

    Swift

    case fitContent