Hi,
A section of my Main.qml looks like this:
NavigationItem {
title: "Add a Friend"
NavigationStack {
Page {
id: addFriend1
title: "Add a Friend"
}
}
}
}
The addFriend1 code is a !long data entry form and I don’t want to include it on the navigation page. Is there a way including the whole page in the navigation page by referencing it?
Thank you.