¿Hay alguna forma de ocultar la flecha a la derecha de la vista del enlace de navegación que se agrega automáticamente?
Quiero mostrar una cuadrícula de imagen usando NavigationView -> Lista -> HStack -> NavigationLink_1 - NavigationLink_2
swiftui
navigationview
blackops
fuente
fuente
Respuestas:
La forma en que funcionó para mí:
fuente
fuente
Form
: `var body: some View {Form {NavigationLink (destination: Text (" View "), tag: 1, selection: $ selection) {EmptyView ()} Text (" Tap "). onTapGesture {self.selection = 1}}} `NOTA:VStack
en el ejemplo anterior no es necesario.También puede hacer como: Esto funcionó para mí,
fuente