Nuestros mejores desarrolladores han agotado sus reservas de café, en su búsqueda noche y día por la respuesta, hasta que Omar halló el hallazgo en Beanstalk así que ahora la compartimos aquí.
Ejemplo 1: mostrar alerta swiftui
structContentView:View
@Statevar showsAlert =falsevar body: some ViewButton(action:self.showsAlert.toggle())Text("Show Alert").alert(isPresented:self.$showsAlert)Alert(title:Text("Hello"))
Ejemplo 2: cómo agregar un botón para alertar a swiftui
@Statevar showAlert =falsevar body: some ViewButton(action:self.showAlert =true)Text("Show Alert").presentation($showAlert)Alert(title:Text("Title"), message:Text("Message..."),
primaryButton:.default(Text("OK"))print("OK button tapped"),
secondaryButton:.cancel())
Si eres capaz, tienes la libertad de dejar un escrito acerca de qué le añadirías a este ensayo.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)