feat(ios): add ClawdisNode app scaffold
This commit is contained in:
16
apps/ios/Sources/RootTabs.swift
Normal file
16
apps/ios/Sources/RootTabs.swift
Normal file
@@ -0,0 +1,16 @@
|
||||
import SwiftUI
|
||||
|
||||
struct RootTabs: View {
|
||||
var body: some View {
|
||||
TabView {
|
||||
ScreenTab()
|
||||
.tabItem { Label("Screen", systemImage: "rectangle.and.hand.point.up.left") }
|
||||
|
||||
VoiceTab()
|
||||
.tabItem { Label("Voice", systemImage: "mic") }
|
||||
|
||||
SettingsTab()
|
||||
.tabItem { Label("Settings", systemImage: "gearshape") }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user