Answers for "flutter check application direction"

0

flutter check application direction

final TextDirection currentDirection = Directionality.of(context);
final bool isRTL = currentDirection == TextDirection.rtl;
Posted by: Guest on August-02-2021

Code answers related to "flutter check application direction"

Browse Popular Code Answers by Language