This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ContentView.swift | |
// AnimationTimingCurve | |
// | |
// Created by Chris Eidhof on 25.09.19. | |
// Copyright © 2019 Chris Eidhof. All rights reserved. | |
// | |
import SwiftUI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import LinkPresentation | |
struct TutorialPost: UIViewRepresentable { | |
typealias UIViewType = LPLinkView | |
var url: URL | |
func makeUIView(context: UIViewRepresentableContext<TutorialPost>) -> TutorialPost.UIViewType { | |
return LPLinkView(url: url) |