Skip to content

SwiftUIViewTypeInspection provides helpers methods on SwiftUI.View to inspect its real concrete type.

License

Notifications You must be signed in to change notification settings

getogrand/SwiftUIViewTypeInspection

Repository files navigation

SwiftUIViewTypeInspection

SwiftUIViewTypeInspection provides helpers methods on SwiftUI.View to inspect its real concrete type.

View.inspectType() -> Self

Print its real concrete type representation to the standard output stream.

Example:

import SwiftUIViewTypeInspection

struct MyView: View {
  var body: some View {
    HStack {
      Text("Hello, ")
      Text("world!")
    }
    .inspectType() // prints "HStack<TupleView<(Text, Text)>>"
  }
}

View.inspectType<Target: TextOutputStream>(to output: inout Target) -> Self

Store its real concrete type representation to the target stream.

Tip: the String type conforms TextOutputStream.

Example:

import SwiftUIViewTypeInspection

var output: String = ""

struct MyView: View {
  var body: some View {
    HStack {
      Text("Hello, ")
      Text("world!")
    }
    .inspectType(to: &output) // stores "HStack<TupleView<(Text, Text)>>\n"
  }
}

Credits

Thinking in SwiftUI, page 10, 2020-12-15 ver.

About

SwiftUIViewTypeInspection provides helpers methods on SwiftUI.View to inspect its real concrete type.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages