How to change IOS swipe back flutter?

255

Solution 1

the other answer will work but it is hard to make it work and if you don't know swift it would be really tough.

the easier way to do this is to change its locale back to English (consider that your app language is rtl like Farsi or Arabic)

MaterialApp(
        debugShowCheckedModeBanner: false,
        supportedLocales: [
          Locale("en", "US"),
        ],
        locale: Locale("en", "US"),

then change your page Directionality to rtl using Directionality widget. like this

Directionality(
  textDirection: TextDirection.rtl,
  child: Scaffold(

this will fix it

Solution 2

I am guessing you want to create a right to left(RTL) application for example for arabic. Flutter supports the switch to RTL. Refer to the following:

right-to-left (RTL) in flutter

iOS back gesture for RTL Languages

Share:
255
Ardeshir ojan
Author by

Ardeshir ojan

Updated on January 01, 2023

Comments

  • Ardeshir ojan
    Ardeshir ojan over 1 year

    right now the back button in ios is by swiping from left to right I want to change it to right to left. how can I do that?