Skip to content

Instantly share code, notes, and snippets.

View Frodothedwarf's full-sized avatar

Frederich Pedersen Frodothedwarf

  • Odense
  • 00:25 (UTC +02:00)
View GitHub Profile
@dankamel
dankamel / BottomSheetDesign.swift
Last active June 15, 2024 12:21
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 }) {