Skip to content

Instantly share code, notes, and snippets.

View Frodothedwarf's full-sized avatar

Frederich Pedersen Frodothedwarf

  • Odense
  • 21:08 (UTC +01:00)
View GitHub Profile
@dankamel
dankamel / BottomSheetDesign.swift
Last active September 15, 2025 09:15
Native iOS 15 Adjustable Bottom Sheet In SwiftUI (half bottom sheet)
import SwiftUI
struct BottomSheetDesign: View {
@State var showSheet: Bool? = nil
var body: some View {
Button(action: { showSheet = true }) {