I have a working web application developed with GWT. Now that it has to resize on a tablet or smaller screens I thought of using GWT Bootstrap. But the existing application has only one project.html and project.css file under war folder. Currently no UI binders are used. There are four screens displaying different charts created by d3js.
My Question is it still possible to use gwt bootstrap for resizing? Or what about only Bootstrap and use the css file without any UI binders?
Which approach is better ? As im confused and have spent couple of hours searching and reading.
If you plan to interact in your
GWTapp with bootstrap components (i.e.NavBar,Caoursel, etc) then I would go withgwt-bootstrapbecause you don't have to useJSNIand you get some type safety.If you don't need to interact those components or you use mostly pure
HTMLin your GWT app you can also use plainbootstrapand add the corresponding classes.Edit code example:
UiBinder:
Code: