G Wright
G Wright

Reputation: 25

codenameone app with sliding menu

new to codename one, and I'm looking to build a fairly robust app. I've read a lot of codename one documentation and have looked through many of the demos on git. My question is, what is the best way to architect the application?

Here are my basic requirements:

Based on this short list of requirements, would it better to make each different screen a form, and the sliding menu for each a different 'instance', or make a main form that contains the sliding menu (and just change contents of menu based on current screen) and make each different screen a component instead of a form?

Also, I was considering coding it by hand, and not using the gui builder.

Thank you.

Greg

Upvotes: 1

Views: 89

Answers (1)

Shai Almog
Shai Almog

Reputation: 52760

I would go with separate forms mostly because of the hassle of updating the side menu for every selection you make. This would also make the general design more flexible.

Upvotes: 0

Related Questions