Skip to content

Instantly share code, notes, and snippets.

View kildos's full-sized avatar

Marcos Sabarís kildos

  • A Coruña, Spain
View GitHub Profile
@kildos
kildos / CustomBottomSheetView.swift
Created August 14, 2024 16:49
SwiftUI customizable bottom sheet with optional button
import SwiftUI
struct CustomBottomSheetView: View {
@State var title: LocalizedStringKey
@State var subtitle: LocalizedStringKey
@State var actionText: LocalizedStringKey
@State var showingSheet = false
var action: (() -> Void)? = nil
var dismissed: () -> Void