26 lines
522 B
Swift
26 lines
522 B
Swift
//
|
|
// ShareView.swift
|
|
// AlloVictor
|
|
//
|
|
// Created by Bodinaud Victor on 14/04/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ShareView: View {
|
|
let link: String
|
|
|
|
var body: some View {
|
|
HStack {
|
|
ShareLink(item: URL(string: link)!) {
|
|
Image(systemName: "square.and.arrow.up")
|
|
}
|
|
.foregroundColor(.black)
|
|
Button(action: {}, label: {
|
|
Image(systemName: "ellipsis.circle")
|
|
})
|
|
.foregroundColor(.black)
|
|
}
|
|
}
|
|
}
|