UI updates for labwise branding

This commit is contained in:
2026-03-20 02:05:53 -05:00
parent 12a79db143
commit efec14139c
23 changed files with 705 additions and 28 deletions

View 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()
}