Open bibstha opened 3 months ago
I'm not sure if this is the best way, but if you're using the demo code, you can insert webView.allowsLinkPreview = false
into the section that creates the custom webView:
Another option specifically for link previews is CSS. If you're targeting turbo native in your HTML tag, you can do something like this:
html[data-turbo-native] {
-webkit-touch-callout: none;
}
This may be due to stale documentation. Looks like the
TurboNavigator
branch is the most active branch. The QuickStart says theWith this, the Session object and the webView object are encapsulated inside TurboNavigator. If I want to set configs to webView, eg:
webView.allowsLinkPreview = false
, how do I do that?