TF-4066 Add Unread, Starred checkbox in advanced search form view

This commit is contained in:
dab246
2025-09-26 18:52:27 +07:00
committed by Dat H. Pham
parent d05904229b
commit 58dc75f8c8
5 changed files with 105 additions and 10 deletions
@@ -30,7 +30,7 @@ class LabeledCheckbox extends StatelessWidget {
children: <Widget>[
buildCheckboxWidget,
buildGapWidget,
buildLabelWidget,
Flexible(child: buildLabelWidget),
],
),
);
@@ -53,5 +53,7 @@ class LabeledCheckbox extends StatelessWidget {
Widget get buildLabelWidget => Text(
label,
style: textStyle ?? ThemeUtils.textStyleM3BodyMedium3,
maxLines: 1,
overflow: TextOverflow.ellipsis,
);
}