Hye all,
Anyone know how to code the back button on device? Example if I on 3rd screen when I press the back button on device it go on 2nd screen. But now, I on 3rd screen then when I press back button, it go to main screen.please help me.
handle back button on device// Expert user has replied. |
1 Replies
Hi,
you can try below code.
def index
# your codes
render :back => '/app'
end
Thanks