Skip to content

iOS black stripe on top of the system overlay after routing to another page #160

Answered by agordn52
fuz12 asked this question in General
Discussion options

You must be logged in to vote

Hi @fuz12,

This is because we added the swipe-back gesture for IOS in v5.64.0.

There are two ways you could fix this.

  1. Update your Theme style to use a white background
  2. Set isIos to false using pageTransitionSettings when routing.
router.route(..., pageTransitionSettings: PageTransitionSettings(
    isIos: false
));

// update routeTo calls

routeTo(..., pageTransitionSettings: PageTransitionSettings(
    isIos: false
));

Hope that helps :)

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@fuz12
Comment options

@agordn52
Comment options

Answer selected by fuz12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants