You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really like this package but I've run into an issue. I've got this code:
import SwiftUI
import RichText
struct MainView : View {
var body: some View { ScrollView { RichText(html: Documents.Welcome) }
}
and when it runs I get a bunch of warnings: [ViewportSizing] maximumViewportInset cannot be larger than frame (similarly for minimumViewportInset). Documents.Welcome is quite large but the warnings didn't seem to be a problem.
But today I added a "details" section:
CLICK HERE
There's a lot of text here.
and nothing renders after the details link. The same document loads in web browsers (Chrome, Safari, etc) perfectly ok.
The text was updated successfully, but these errors were encountered:
I really like this package but I've run into an issue. I've got this code:
import SwiftUI
import RichText
struct MainView : View {
var body: some View { ScrollView { RichText(html: Documents.Welcome) }
}
and when it runs I get a bunch of warnings: [ViewportSizing] maximumViewportInset cannot be larger than frame (similarly for minimumViewportInset). Documents.Welcome is quite large but the warnings didn't seem to be a problem.
But today I added a "details" section:
CLICK HERE
There's a lot of text here.
The text was updated successfully, but these errors were encountered: