liveview-native-swiftui-charts
is an add-on library for LiveView Native. It adds Swift Charts support for data visualization.
- In Xcode, select File → Add Packages...
- Enter the package URL
https://github.com/liveview-native/liveview-native-swiftui-charts
- Select Add Package
Import LiveViewNativeCharts
and add .charts
to the list of addons on your LiveView
:
import SwiftUI
import LiveViewNative
import LiveViewNativeCharts
struct ContentView: View {
var body: some View {
#LiveView(
.localhost,
addons: [.charts]
)
}
}
Now you can use the Chart
element in your template.
You can view documentation on the elements and attributes in this addon from Xcode:
- In Xcode, select Product → Build Documentation in the menu bar
- Select Window → Developer Documentation (Xcode should open this for you after the documentation is built)
- Select LiveViewNativeCharts in the sidebar