TF-733 Support strikeThrough style for rich text on web

This commit is contained in:
dab246
2022-07-20 17:50:25 +07:00
committed by Dat H. Pham
parent 75133f05f2
commit 6848da21ea
2 changed files with 7 additions and 0 deletions
@@ -31,6 +31,10 @@ class RichTextWebController extends GetxController {
if (settings.isUnderline) {
listTextStyleApply.add(RichTextStyleType.underline);
}
if (settings.isStrikethrough) {
listTextStyleApply.add(RichTextStyleType.strikeThrough);
}
}
void applyRichTextStyle(RichTextStyleType textStyleType) {