Swiping to the edge shows the previous screen
See original GitHub issueHiya! So you think it’s broken or missing a feature eh?
Welllllll, it just might be. Do me a favor and check the following.
- Issue does not already exist
- Identify exactly what aspect your issue is about
- [ x ] ignite base application
- ignite the cli
- ignite generated code
Also, for the quickest assistance please run ignite doctor and paste in
everything (including the lines with 3 backticks).

Is this a feature in Ignite? Coz its a bit annoying for users especially those phones that are very sensitive, event swiping close to the edge displays the previous screen. Also my app shows the login screen when swiping from the index screen which has 4 tabs. Basically whichever tab i swipe to the edge, it shows the login screen behind it, it looks like your peeling something
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
How to disable the swipe left from edge of screen gesture?
Click on Settings. d. Now in the new window disable edge swipes and check. If you have any ...
Read more >How to turn on or off the Screen Edge Swipe feature in ...
In this guide, we'll give you the steps for both disabling and enabling Edge swipes. Manage your browser's feature, and enjoy the result!...
Read more >ios - Swipe to go back only works on edge of screen?
Swipe to go back is default behavior of pushed/showed view controllers. It works from left edge of the screen ...
Read more >Gesture, swipe, and press to navigate your iPhone 13 and ...
To go to the Home Screen at any time, swipe up from the bottom edge of the screen. Swiping up from the bottom...
Read more >Enable or Disable Screen Edge Swipe in Windows 11 Tutorial
This tutorial will show you how to enable or disable screen edge swipe for all users in Windows 11. You must be signed...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

React-Native-Router-Flux, which currently powers the Ignite Navigation, has a
panHandlersproperty you can set tonullon eachsceneyou wish to disable swipe-back behavior for or (my preference) you can set your Home Scene and your Login Scene totype="replace"which will automatically prevent the user from going backwards on the navigation stack.@mykelaballe You should be able to put
type="replace"on both yourloginscene and yourindexScreenscene.