GWT-Bootstrap provides GWT widgets styled and (partly) operated by Twitter's Bootstrap. Bootstrap is a project of Mark Otto and Jacob Thornton.
{@literal }
to your {@code *.gwt.xml} file.
{@literal
...
}
IMPORTANT: If you are using GWT-Platform, please take a look at this comment on issue #82.
xmlns:b="urn:import:com.github.gwtbootstrap.client.ui"to the top of every UiBinder file that uses GWT-Bootstrap widgets. You can then use the widgets in the
"b"
namespace:
{@literal Some Button }
As usual, all setters map to UiBinder attributes. So the method {@link com.github.gwtbootstrap.client.ui.Icon#setType(IconType type) setType(IconType type)} can (and in this case: has to) be used via:
{@literal }
As you can see, the values are the ones of Bootstrap without the prefix
and in capital letters ("PLANE" instead of
"icon-plane").
{@literal
}
-- {@link com.github.gwtbootstrap.client.ui The list of all available
widgets.}
-- {@link
com.github.gwtbootstrap.client.ui.config.Configurator A way to
provide your own Bootstrap JavaScript/CSS files.}
-- Our Showcase (external)
-- The code on
Github (external)
Please don't hesitate to ask questions in our Google Group and open an issue if you found a bug or have a feature suggestion.
@see Maven project site