Skip to content

Instantly share code, notes, and snippets.

View UzBestDeveloper's full-sized avatar
🎯
Focusing

UzBestDeveloper

🎯
Focusing
View GitHub Profile
@dankamel
dankamel / BottomSheetDesign.swift
Last active March 27, 2025 03:25
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 }) {