Post

Replies

Boosts

Views

Activity

Reply to How can I use multiple `.alert` dialog in SwiftUI?
here some example but I do not know how I will add two delete method to one .alert dialog struct AlertInfo: Identifiable { enum AlertType { case one case two } let id: AlertType let title: String let message: String } struct ContentView6: View { // 2 @State private var info: AlertInfo? var body: some View { VStack { Button("Alert 1") { // 3 info = AlertInfo( id: .one, title: "Title 1", message: "Message 1") } Button("Alert 2") { // 4 info = AlertInfo( id: .two, title: "Title 2", message: "Message 2") } } .alert(item: $info, content: { info in // 5 Alert(title: Text(info.title), message: Text(info.message)) }) } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’22
Reply to How can I use multiple `.alert` dialog in SwiftUI?
here some example but I do not know how I will add two delete method to one .alert dialog struct AlertInfo: Identifiable { enum AlertType { case one case two } let id: AlertType let title: String let message: String } struct ContentView6: View { // 2 @State private var info: AlertInfo? var body: some View { VStack { Button("Alert 1") { // 3 info = AlertInfo( id: .one, title: "Title 1", message: "Message 1") } Button("Alert 2") { // 4 info = AlertInfo( id: .two, title: "Title 2", message: "Message 2") } } .alert(item: $info, content: { info in // 5 Alert(title: Text(info.title), message: Text(info.message)) }) } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to Why it says "Function is unused" in SwiftUI?
I forget put the () end of the signUp    self.viewModel.signUp()
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to Why it is throw an error as "Return from initializer without initializing all stored properties" in SwiftUI?
when I use    @State var show = false in RegisterFirstScreen, it fix error.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to What is the difference between Data and [UInt8]?
UInt8 is an unsigned integer which can store only positive values.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’22
Reply to Xcode 13.3 - can't update
it is download, u can follow it in launchpad menu
Replies
Boosts
Views
Activity
Mar ’22
Reply to Why I get notification always in macbook in top right corner?
I cannot load image here, take error, when I update my macbook to macos venture, it is give alots notification on top right corner like "background items added", why I don't know what is the problem
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’23