GWT as an offline application to be deployed on iPad

I often use GWT for web interfaces. I heard that it is used fairly in conjunction with Gears for standalone solutions (probably HTML5 "offline storage" is probably all the rage at the moment), and I would like to experiment with building a graphical interface in GWT and use it on my iPad . Tips / tutorials on how to deploy it on a device to act as much as possible as a resident "application"? It's just a curiosity / experiment to fill the weekend ... (I can “free up” the iPad for the experiment if necessary, but I'm sure a lot can be done without this ...)

+7
ipad gwt
source share
2 answers

phonegap (now Apache cordova) provides iOS / android users with their own functions, such as camera, device file management, contacts, geolocation, etc. in our application. GWT and mgwt : Using mgwt, gwt (both are open source) and GwtPhonegap, we can develop cross-platform mobile applications that can act like native applications. in terms of performance, these applications are a bit slow compared to native applications, but the convenience is that the application can be installed on multiple platforms.

GwtPhonegap GwtPhonegap acts as a bridge (provides abstraction) between the device’s built-in functions and our application. We can get a good look using css. We have gwt-html5-database support for which caching is performed. gwt-html5

+1
source share

Try using gwt in conjunction with a gap in the phone. It will output many of the native Apis to make them available for use in gwt.

https://code.google.com/p/gwt-phonegap/wiki/GettingStarted

Also, I had a very good experience using m-gwt as the user interface. MGWT makes it easy to create custom user interfaces using CSS + JS.

http://www.m-gwt.com/

0
source share

All Articles