Make MediaAltTextOverlay-view publicly accessible (#806)

This commit is contained in:
Nathan Mattes 2022-12-24 00:59:59 +01:00
parent a51f203546
commit cdc04faaf8
1 changed files with 9 additions and 3 deletions

View File

@ -7,13 +7,19 @@
import SwiftUI
struct MediaAltTextOverlay: View {
var altDescription: String?
public struct MediaAltTextOverlay: View {
public var altDescription: String?
@State private var showingAlt = false
@Namespace private var namespace
var body: some View {
public init() {}
public init(altDescription: String?) {
self.altDescription = altDescription
}
public var body: some View {
GeometryReader { geom in
ZStack {
if let altDescription {