LinkRow.swift 332 B

12345678910111213141516171819
  1. // LoopFollow
  2. // LinkRow.swift
  3. // Created by Jonas Björkert on 2025-05-27.
  4. import Foundation
  5. import SwiftUI
  6. @ViewBuilder
  7. func LinkRow(
  8. title: String,
  9. icon: String,
  10. tint: Color = .white,
  11. url: URL
  12. ) -> some View {
  13. ActionRow(title: title, icon: icon, tint: tint) {
  14. UIApplication.shared.open(url)
  15. }
  16. }