mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-28 21:01:43 +03:00
feat(ios): add ClawdisNode app scaffold
This commit is contained in:
@@ -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