Github list of Awesome Libraries
Introspect
Inspects view hierarchy and access the UIKit views. For example, you can access UITableView
easily from List
:
List {
Text("We all know List is implemented using UITableView..")
}
.introspectTableView { tableView in
tableView.separatorStyle = .none
}
SwiftUIKitView
Wrap any UIKit views to use in SwiftUI.
UIViewContainer(UILabel(), layout: .intrinsic) // Can be any UIView
.set(\.text, to: "Set using keypaths")