summaryrefslogtreecommitdiff
path: root/I2C
diff options
context:
space:
mode:
authorAbdellah El Morabit <nsrddyn@gmail.com>2024-11-10 17:44:50 +0100
committerAbdellah El Morabit <nsrddyn@gmail.com>2024-11-10 17:44:50 +0100
commit13b23f617c8016b279cade5b5e0cf17a04b6471a (patch)
tree0a637e50df1cc10d196b104308ea8ea5cfcf6ea2 /I2C
parent68f35521422c21348d2fc7fd43481da7178347b5 (diff)
working on the general design of the ios application, still no clue on how swiftui works though lol
Diffstat (limited to 'I2C')
-rw-r--r--I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstatebin13094 -> 22152 bytes
-rw-r--r--I2C/I2C/ContentView.swift29
2 files changed, 15 insertions, 14 deletions
diff --git a/I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstate b/I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstate
index 2cf6362..8bdd966 100644
--- a/I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstate
+++ b/I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstate
Binary files differ
diff --git a/I2C/I2C/ContentView.swift b/I2C/I2C/ContentView.swift
index 729d80b..c9b93b8 100644
--- a/I2C/I2C/ContentView.swift
+++ b/I2C/I2C/ContentView.swift
@@ -1,23 +1,24 @@
-//
-// ContentView.swift
-// I2C
-//
-// Created by nsrddyn on 09/11/2024.
-//
-
import SwiftUI
struct ContentView: View {
var body: some View {
- VStack {
- Image(systemName: "globe")
- .imageScale(.large)
- .foregroundStyle(.tint)
- Text("Hello, world!")
+ HStack {
+
+ Button("VOICE RECOGNITION"){
+
+ }
+ Button("CPU UPTIME"){
+
+ }
+ Button("CPU INFO"){
+
+ }
+
+ }
}
- .padding()
}
-}
+
+
#Preview {
ContentView()