Reputation: 4917
I want to try and build a UI using this GWT designer tool I read about. I have GWT tools installed, created a "Google -> Web Application Project" but I don't see any means to build a UI except via code. I tried installing the plugin http://dl.google.com/eclipse/inst/d2gwt/latest/3.7 but it fails ( Not sure if I need this or not )
This is the tutorial I was looking at ..... How do I get this UI design view? https://developers.google.com/web-toolkit/tools/gwtdesigner/quick_start
Upvotes: 2
Views: 5241
Reputation: 1139
Another alternative to using the GWT Designer, if you don't want to use UiBinder, is
Upvotes: 1
Reputation: 10180
First from new file dialogue ( Ctrl + N ) create a UiBinder file (xxx.ui.xml):
Then select "Design" from left bottom of opened file in eclipse.
Upvotes: 0