webview
Integrating JavaFX 2.0 WebView into a Swing Java SE 6 Application
It is very well possible! One has to install JavaFX 2.0, and somehow manage to have jfxrt.jar in the Classpath. The following code renders a JFXPanel inside a JFrame. The JFXPanel contains a WebView which loads google.com. However, at least on my machine, the WebView feels rather sloppy. I’m working on Mac OS X 10.6; … Read more
View a PDF in React Native
Okay, for future generations, here’s how I solved this problem: Updated September 13, 2017: There is a new NPM module that makes this entire process much easier. I would suggest using it going forward instead of my original answer below: react-native-pdf Once installed, rendering the PDF is as easy as this: export default class YourClass … Read more