How can I Customisie the menu bar of my SwiftUI app? - swiftui

i want to customise the menubar of my swiftUI app and so set custom labels and actions.
This menu bar:

Related

Display a swiftui progress view inside a nested navigation screen

My app has a nested navigation as below
Landing View --> Child view 1 --> Nested Child view
What is the best way to show a progress view while a background download / upload is underway ?
Currently placing an overlay doesn't stop the user from navigating back as the overlay doesn't cover the navigation bar.
ZStack {
}.overlay(ProgressView())

How to react on press of styled button in tvOS with SwiftUI

If you style a Button element in tvOS, you have to manage focus manually as described in this post:
https://stackoverflow.com/a/58179225/10826194
Unfortunately, the action attached to the button is never called. Also, there is no TapGesture on tvOS.
How can I attach an action to a styled tvOS button?

Using SwiftUI how to open specific view from a notification click in watchOS

I'm using swiftUI framework.I want to open a specific page from the notification button click. How can I handle that event? and How to navigate to specific View from notifications didReceive delegate function ?

How to change the root view controller of a uinavigation controller embedded in a uitabbarcontroller?

Please see the attached image. Here I am having a uitabbarcontroller attached with navigation controller which is having a root view as the "first view". When I click on a button in the first view it goes to the "Second View".
At some point, I want to change the root view controller of navigation controller to Second View and when clicking on a back button in Second View it moves to the first view with tab bar controller.
So for this what should I do? Indirectly I want to say that when the user enters the application he should see the second view controller with navigation and tab bar controller and when he presses back he should move to the first view with navigation controller and tab bar controller
You should swap the whole UINavigationController for a new one with the desired root controller as it is not the best practice to replace the root controller of the UINavigationController (but it is possible by changing the viewControllers array)

How can I remove "Add" popup functionality in Django?

I have a app that crashes Internet Explorer when clicked in an "Add" button in Django Admin.
It is a way to remove this popup functionality from Django?