Answers for "how to edit text direction in flutter code"

0

flutter text direction auto

import 'package:intl/intl.dart' as intl;

bool isRTL(String text) {
    return intl.Bidi.detectRtlDirectionality(text);
}
Posted by: Guest on August-11-2021

Code answers related to "how to edit text direction in flutter code"

Code answers related to "Dart"

Browse Popular Code Answers by Language