mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
30 lines
542 B
Swift
30 lines
542 B
Swift
//
|
|
// ScrollToBottomButtonView.swift
|
|
// Meshtastic
|
|
//
|
|
// Created by Benjamin Faershtein on 4/2/25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ScrollToBottomButtonView: View {
|
|
var body: some View {
|
|
HStack(spacing: 4) {
|
|
Text("Jump to present")
|
|
.font(.caption)
|
|
.padding(.horizontal, 8)
|
|
.padding(.vertical, 4)
|
|
.cornerRadius(12)
|
|
Image(systemName: "arrow.down")
|
|
.font(.title2)
|
|
.symbolRenderingMode(.hierarchical)
|
|
|
|
}
|
|
.foregroundColor(.accentColor)
|
|
.shadow(radius: 2)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
ScrollToBottomButtonView()
|
|
}
|