mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
23 lines
569 B
Swift
23 lines
569 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
struct TabBarIcon: View {
|
|
|
|
let width, height: CGFloat
|
|
let systemIconName, tabName: String
|
|
|
|
|
|
var body: some View {
|
|
VStack {
|
|
Image(systemName: systemIconName)
|
|
.symbolRenderingMode(.hierarchical)
|
|
.resizable()
|
|
.aspectRatio(contentMode: .fit)
|
|
.frame(width: width, height: height)
|
|
.padding(.top, 10)
|
|
Text(tabName)
|
|
.font(.footnote)
|
|
Spacer()
|
|
}
|
|
}
|
|
}
|