There is one big thing that confuses me about view types in SwiftUI:
They don\'t seem to conform to the View protocol, but somehow, they mysterious
View
The extensions.
extension Text : View { /// The type of view representing the body of this view. /// /// When you create a custom view, Swift infers this type from your /// implementation of the required `body` property. public typealias Body = Never }