-
-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Labels
Description
Expected Behavior
A popup
Current Behavior
The popup is not visibile. But the view dims.
Code Sample
public struct FeedbackView: CenterPopup {
public var body: some View {
Text("Test")
.padding()
.background(.red)
}
}
@main
struct LinkboardApp: App {
var body: some View {
NavigationView {
Button("Tap") {
Task {
await FeedbackView().present()
}
}
}
.registerPopups()
}
}
Screenshots
SDK 4.0.1
Xcode 16.0 (16A242d)
iOS 18.2
iPhone 12
JadeGeek, ukushu and matthojo
