Awesome
NOTE: This widget hasn't been updated for a long time and might not work
BrowserView Widget
Overview
The BrowserView widget implements a simple in-app browser for Titanium Alloy by Appcelerator.
Features
- Open an URL in a window containing a webview.
- The window's title will be automatically updated with document's title.
- Open the URL in the platform's default browser using the action button.
Future work
- Add back, forward and refresh buttons.
- Add more options to the action button (share, copy link…).
- Add more customization options.
Quick Start
Get it
Download this repository and consult the Alloy Documentation on how to install it, or simply use the gitTio CLI:
$ gittio install nl.fokkezb.browserView
Use it
- Use the widget in a controller:
var win = Alloy.createWidget('nl.fokkezb.browserView', null, {
url: 'http://appcelerator.com'
}).getView();
win.open();
- OR require it in a view:
<Widget src="nl.fokkezb.browserView" url="http://appcelerator.com" />
Changelog
- 1.0.1: Fixed for Alloy 1.0GA
- 1.0: Initial version