Building a piano keyboard with SwiftUI

I am interested in building a music app. Is it possible to build a complicated user interface including a music keyboard in SwiftUI, considering it limits 10 view elements for each view stack?

Absolutely, yes. Remember, each container (stacks, groups, etc) can contain other containers. And dynamic containers like ForEach and List aren’t constrained to 10 children.