This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |