I am trying to convert the UI an App of mine to SwiftUI.
My app displays an UITableView, where the cells have the property
"UITableViewCell.AccessoryType.detailDisclosureButton"
That means: "An information button and a disclosure (chevron) control are displayed on every row."
Pressing the button shows Information about the cell Data (modal)
Pressing the chevron pushes a Detail-View onto the NavigationView-Stack and displays it.
How do I achieve this behavior using SwiftUI?