Answers for "match text direction flutter"

C++
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 "match text direction flutter"

Browse Popular Code Answers by Language