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 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 }) {