Meshtastic-Apple/Meshtastic/Views/Helpers/MeshtasticLogo.swift
Garth Vander Houwen a6fbc66819 Touch up the logo
2022-10-06 21:24:54 -07:00

22 lines
371 B
Swift

//
// MeshtasticLogo.swift
// Meshtastic
//
// Copyright(c) Garth Vander Houwen 10/6/22.
//
import SwiftUI
struct MeshtasticLogo: View {
@Environment(\.colorScheme) var colorScheme
var body: some View {
VStack {
Image(colorScheme == .dark ? "logo-white" : "logo-black")
.resizable()
.scaledToFit()
}
.padding(.bottom, 5)
.offset(x: -15)
}
}