Reputation: 13
I'm deciding whether to build a UI using the UI Builder or just coding it.
The UI Builder seems like a quick way, but does it allow you to export the code so you can share it with someone else? From what I've seen, there is no option to do that.
Can anyone confirm this?
Upvotes: 1
Views: 259
Reputation: 1479
There is one way how to export UI from Apps Script GUI Builder - share whole document with somebody and he can make the copy of the document including your UI.
But I agree with @mzimmerman it isn't usable in bigger projects. I use it only in some small prototyping cases.
Upvotes: 0
Reputation: 103
The one thing that I don;ole about using the UI Builder is that not all the controls are available. For example, I needed to add a DateBox so I had to change the layout of the form so that it would appears as the last control (It belongs in a FlowPanel)
Upvotes: 0
Reputation: 940
It does not allow you to export from the UI editor. This is one major reason I've chosen not to use it. I can't have dev/pre-prod/prod type environments when working toward deployment.
I've also found the UI editor to be much better at static sized layouts where I prefer to build mine where they will expand dynamically.
Upvotes: 1