add rich text style strike through

This commit is contained in:
Liz Bui
2022-07-21 14:50:29 +07:00
committed by Dat H. Pham
parent e6f1ced4cd
commit 75133f05f2
5 changed files with 23 additions and 1 deletions
@@ -20,6 +20,10 @@ class RichTextMobileTabletController extends GetxController {
if (formatSettings.isUnderline) {
listTextStyleApply.add(RichTextStyleType.underline);
}
if (formatSettings.isStrikeThrough) {
listTextStyleApply.add(RichTextStyleType.strikeThrough);
}
};
}