Name Description Size
IWebView.kt Get the title of the currently displayed website. 4508
IWebViewLifecycleFragment.kt Initializes and manages the lifecycle of an IWebView instance inflated by the super class. It was originally inspired by Android's WebViewFragment. To use this class, override it with a super-class that inflates a layout with an IWebView with @id=webview. Be sure to follow the additional initialization requirements on the [onViewCreated] kdoc. Notes on alternative implementations: while composability is generally preferred over inheritance, there are too many entry points to use this with composition (i.e. all lifecycle methods) so it's more error-prone and we stuck with this implementation. Composability was tried in PR #428. 4748