I have taken the senseui example program, which contain 3 views. When each is pushed/popped onto the navifram the view is animated (expand/shrink) onto/off the screen.
I added a new view to this example which contains a box with an entry on it, added by elm functions. For some reason there is no animation. What? I push /pop the new view as follows:\
nf_it = elm_naviframe_item_push(naviframe, _("Entry"), NULL, NULL, box, "empty"); elm_naviframe_item_pop_cb_set(nf_it, _setting_name_finished_cb, ad);
Why is my new view not have any animation? Is there something I need to set?
I have recreated the exact same view using EDC and it does properly shrink/expand to hide and show. So either that's a bug or there is an attribute to set /function I need to call to make this happen.