Files
LabWiseiOS/LabWise/DashboardView.swift

23 lines
481 B
Swift
Raw Normal View History

2026-03-20 02:05:53 -05:00
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(.brandPrimary))
2026-03-20 02:05:53 -05:00
}
}
#Preview {
DashboardView()
}