UI updates for labwise branding
This commit is contained in:
22
LabWise/DashboardView.swift
Normal file
22
LabWise/DashboardView.swift
Normal file
@@ -0,0 +1,22 @@
|
||||
import SwiftUI
|
||||
|
||||
struct DashboardView: View {
|
||||
var body: some View {
|
||||
TabView {
|
||||
Tab("Chemicals", systemImage: "flask.fill") {
|
||||
ChemicalsListView()
|
||||
}
|
||||
Tab("Scan", systemImage: "camera.fill") {
|
||||
ScanView()
|
||||
}
|
||||
Tab("Profile", systemImage: "person.fill") {
|
||||
ProfileView()
|
||||
}
|
||||
}
|
||||
.tint(Color("Brand/BrandPrimary"))
|
||||
}
|
||||
}
|
||||
|
||||
#Preview {
|
||||
DashboardView()
|
||||
}
|
||||
Reference in New Issue
Block a user