You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No se si será la mejor solución, pero se podría hacer lo siguiente...
En PixelDrawingView declaramos una variable binding para pasarle el array de pixelArts
@BindingpublicvarparentPixelArts:[PixelArt]
Modificamos el init de PixelDrawingView añadiendo el nuevo parámetro parentPixelArts y lo asignamos a la variable Binding:
/// Must be public to allow creating instances out of this package
publicinit(pixelArt:Binding<PixelArt>, parentPixelArts:Binding<[PixelArt]>){self._pixelArt = pixelArt
self._draftPixelArt =State(initialValue: pixelArt.wrappedValue)self._parentPixelArts = parentPixelArts
}
Modificamos el body de PixelDrawingView con lo siguiente:
publicvar body:someView{
if !parentPixelArts.contains(where:{$0.id ==self.pixelArt.id || $0.name ==self.pixelArt.name}){Text("PixelArt has been deleted!")}else{
He puesto una doble condición porque el PixelArt.from cambia el "id"... habría que tener una clave id fija que no cambiara.
Asumo que el nombre es clave.
Por último solo faltaría pasar el array de pixelArts en PixelArtListView:
struct PixelArtListView:View{@StatevarpixelArts:[PixelArt]var body:someView{NavigationView{List($pixelArts){ pixelArt in
NavigationLink(destination:PixelDrawingView(pixelArt: pixelArt, parentPixelArts: $pixelArts)){
The text was updated successfully, but these errors were encountered:
No se si será la mejor solución, pero se podría hacer lo siguiente...
En PixelDrawingView declaramos una variable binding para pasarle el array de pixelArts
Modificamos el init de PixelDrawingView añadiendo el nuevo parámetro parentPixelArts y lo asignamos a la variable Binding:
Modificamos el body de PixelDrawingView con lo siguiente:
He puesto una doble condición porque el PixelArt.from cambia el "id"... habría que tener una clave id fija que no cambiara.
Asumo que el nombre es clave.
Por último solo faltaría pasar el array de pixelArts en PixelArtListView:
The text was updated successfully, but these errors were encountered: