How do i navigate between naviframes?

Hello,
I want to know how to naviagate between naviframe. Like i created a button in main screen then when user clicks on it it goes to next screen but from there im unable to comeback to main screen.

Can anyone post me some refernces on how to naviagate back and forth to multiple screens.?

Hi,
You can follow the steps below to implement navigation between screens and closing a screen on button click respectively:

  • Please have a look into this link for navigation control. It will guide you to navigate between multiple views.
    You may also go through Create another view and navigate between the views section in this link to know more detail about naviframe navigation in wearable devices.

  • You may use below line of code inside a button click event callback to lower a window object so that no other window remains covered by it.
    elm_win_lower(ad->win);

Thanks.