Integrate SwiftUI
Define SwiftUI Screens
Approach 1: Wrapping Luciq on your views
var body: some View {
LuciqTracedView(name: "View Name") {
VStack {
Text("Hello, World!")
}
}
}Approach 2: Appending Luciq Modifier to your views
Private Views
User Interactions - Manual Approach
Last updated