Say you have multiple sheets you want to display on a single screen. Let's say you don't want to have a bunch of different .sheet modifiers on your view. Here's a better idea.
Create some sheet views
Create an enum containing each type of sheet you have avaiable. Conform to Identifiable and Hashable
Create a sheet view with a switch statement that iterates over the enum of sheets and returns the appropriate view
You'll need this cool extension on Binding
Put it all together in the ContentView