KeyValueItem

public struct KeyValueItem<Key, Value> where Key : View, Value : View
extension KeyValueItem: View

Undocumented

  • Undocumented

    Declaration

    Swift

    public init(
          @ViewBuilder key: () -> Key,
    @ViewBuilder value: () -> Value,
    axis: Axis = .horizontal
          )
  • Declaration

    Swift

    public var body: some View { get }

Available where Key == Text, Value == _ConditionalContent<Text, EmptyView>

Available where Value == EmptyView

  • Undocumented

    Declaration

    Swift

    public init(
      @ViewBuilder key: () -> Key,
    axis: Axis = .horizontal
      )