right-to-left (RTL) in flutter
I was using Flutter more than a week, and wanted to create an Arabic (right-to-left) app. I was reading Internationalizing Flutter Apps , but it didn't mention how to set the layout direction. So, how to show right-to-left (RTL) layout in Flutter? first you must add flutter_localizations package to your pubspec.yml dependencies: flutter: sdk: flutter flutter_localizations: sdk: flutter now you have two choices : 1. force a locale ( and direction ) on all devices import 'package:flutter/material.dart'; import 'package:flutter_localizations/flutter_localizations.dart'; MaterialApp(