0

Is it possible to overview the navigation of a SwiftUI app like it was with Storyboard in the UIKit "era" with arrows connecting different Views?

Upd 1. So if it’s not possible atm, how do you handle that? Just keep some hand drawing in sync with the actual structure?

Tamás Sengel
  • 55,884
  • 29
  • 169
  • 223
serg_zhd
  • 1,023
  • 14
  • 26
  • No, there are no GUI tools for visualizing the UI like that. – jnpdx Oct 04 '21 at 15:25
  • It’s super convenient imo, especially, for introducing the project to someone new. – serg_zhd Oct 04 '21 at 15:37
  • 2
    The issue is that the views can be created on the fly. With UIKit, everything was set except for the data going in by StoryBoard. The best you can do is a mock up. – Yrb Oct 04 '21 at 16:26
  • I understand that SwiftUI is dynamic. One could speculate on parsing all the navigation links, tabs etc to draw at least *some* structure, even if it’s not going to be a ground truth. – serg_zhd Oct 05 '21 at 06:39

1 Answers1

0

Here's a (hacky) workaround:

Tamás Sengel
  • 55,884
  • 29
  • 169
  • 223