materialRtl static method

FluentAutoSuggestThemeData materialRtl({
  1. bool isDark = false,
})

RTL Material theme preset

Implementation

static FluentAutoSuggestThemeData materialRtl({bool isDark = false}) {
  return material(isDark: isDark).copyWith(
    textDirection: TextDirection.rtl,
    rtlMirrorIcons: true,
    rtlMirrorLayout: true,
  );
}