elc_naviframe.h: added more description about stack architecture of naviframe.

This commit is contained in:
Daniel Juyung Seo 2013-10-22 23:13:32 +09:00
parent 498747b16a
commit fae1dc109e
1 changed files with 5 additions and 3 deletions

View File

@ -10,9 +10,11 @@
*
* A naviframe holds views (or pages) as its items. Those items are
* organized in a stack, so that new items get pushed on top of the
* old, and only the topmost view is displayed at one time. The
* transition between views is animated, depending on the theme
* applied to the widget.
* old, and only the topmost view is displayed at one time. Due to the
* characteristics of a stack, even though you push a new item, previous item
* is not deleted. Previous item will be shown when you pop new item. The
* transition between views is animated, depending on the theme applied to the
* widget.
*
* Naviframe views hold spaces to various elements, which are:
* - back button, used to navigate to previous views,