-
Notifications
You must be signed in to change notification settings - Fork 41
mgwt 2.0 Features
The appearance pattern was introduced with mgwt 2.0 and replaces the old way of styling. More information about the appearance pattern are here.
mgwt 2.0 provides a simple and clear default theme that is easily customizable. Also the platform themes for Android and iOS have been updated. Details see here.
mgwt 2.0 comes with about 140 buttons with different images and with an easy way to customize these images. Here are details about how to use them.
The CSS Updater allows applications to change their styling without reloading the application. This gives instant feedback while changing the theme of an mgwt application.
mgwt 2.0 now better supports the flexible box model. Details are here
The access to specific animations is now done with
Animations.SLIDE
instead of
Animation.SLIDE
Old way:
AnimatableDisplay display = GWT.create(AnimatableDisplay.class);
New way:
AnimationWidget display = new AnimationWidget();
mgwt 2.0 does not have the iOS gloss anymore:
mgwtSettings.setAddGlosToIcon(true);
mgwt 2.0 has following binding proeprties:
- mgwt.formfactor - defined by mgwt to distinguish between different screen sized of devices
- mgwt.density - defined by mgwt to distinguish between different pixel density of screens
- user.agent - defined by GWT for different browsers
Details are here
Getting started
- mgwt 2.0 Features
- Getting started with mgwt
- Run the mgwt showcase
- Setting up Super dev mode with GWT 2.7
- Setting up Super dev mode with gwt-phonegap
Layout and Styling
Misc