Replace URLImage with AsyncImage

This commit is contained in:
Arkadiusz Fal
2021-07-27 23:26:52 +02:00
parent 33e102207f
commit 52ffe19324
7 changed files with 54 additions and 95 deletions

20
Shared/VideoView.swift Normal file
View File

@@ -0,0 +1,20 @@
//
// VideoView.swift
// VideoView
//
// Created by Arkadiusz Fal on 26/07/2021.
//
import SwiftUI
struct VideoView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct VideoView_Previews: PreviewProvider {
static var previews: some View {
VideoView()
}
}