I need to send a parameter from one NavigationStack to another NavigationStack, is it possible to do it? So far I have tried everything, but to no avail. I would appreciate any help, thanks…
NavigationItem {
id: homeNavigation
title: "Inicio"
iconComponent: homeIcon
NavigationStack {
id: initStack
initialPage: Splash { }
}
}
NavigationItem {
id: configNavigation
title: "Configuracion"
iconComponent: configIcon
NavigationStack {
id: configStack
initialPage: Configuracion { }
}
}
I need to send a parameter from a page contained in initStack to the initialPage of configStack