| 12345678910111213141516171819 |
- // LoopFollow
- // LinkRow.swift
- // Created by Jonas Björkert on 2025-05-27.
- import Foundation
- import SwiftUI
- @ViewBuilder
- func LinkRow(
- title: String,
- icon: String,
- tint: Color = .white,
- url: URL
- ) -> some View {
- ActionRow(title: title, icon: icon, tint: tint) {
- UIApplication.shared.open(url)
- }
- }
|