struct ContentView: View {
   @State private var appData = ApplicationData.shared

   var body: some View {
      List(appData.items, children: \.options) { item in
        Text(item.name)
     }
   }
}