Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Designing a GUI application: one VS multiple screens

we are creating an application with the following GUI outline: enter image description here

The "stuff to show for step i" changes dramatically. Would it be better to design i separate screens, each with its own controls, or put it all on a single screen and toggle the visibility of the components?

I am looking for maintainability (I will probably need to hand the screen to a designer to improve my (bad) graphic designer).

like image 570
OSH Avatar asked Nov 25 '11 17:11

OSH


1 Answers

In my opinion it is better to have separate screen if only for maintainability. Separate screens will allow each step to evolve independently form the other with minimal dependencies as well as different people to work concurrently on the design and development of the different screens

like image 163
Arnon Rotem-Gal-Oz Avatar answered Sep 21 '22 04:09

Arnon Rotem-Gal-Oz