mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
22 lines
488 B
Swift
22 lines
488 B
Swift
import SwiftUI
|
|
|
|
struct RequestPositionButton: View {
|
|
let action: () -> Void
|
|
|
|
var body: some View {
|
|
Button(action: action) {
|
|
Image(systemName: "mappin.and.ellipse")
|
|
.accessibilityLabel("Position Exchange Requested".localized)
|
|
.symbolRenderingMode(.hierarchical)
|
|
.imageScale(.large)
|
|
.foregroundColor(.accentColor)
|
|
}
|
|
.padding(.trailing)
|
|
}
|
|
}
|
|
|
|
struct RequestPositionButtonPreview: PreviewProvider {
|
|
static var previews: some View {
|
|
RequestPositionButton {}
|
|
}
|
|
}
|