isRtl property
bool
get
isRtl
Implementation
static bool get isRtl {
final context = Get.context;
if (context == null) return false;
return Directionality.of(context) == TextDirection.rtl;
}
static bool get isRtl {
final context = Get.context;
if (context == null) return false;
return Directionality.of(context) == TextDirection.rtl;
}