feat: show video tags

This commit is contained in:
bggRGjQaUbCoE
2024-09-27 18:34:22 +08:00
parent b88cfae8d9
commit f3744c23bc
10 changed files with 100 additions and 9 deletions

View File

@@ -5,12 +5,14 @@ class SearchText extends StatelessWidget {
final Function? onSelect;
final int? searchTextIdx;
final Function? onLongSelect;
final double? fontSize;
const SearchText({
super.key,
this.searchText,
this.onSelect,
this.searchTextIdx,
this.onLongSelect,
this.fontSize,
});
@override
@@ -34,6 +36,7 @@ class SearchText extends StatelessWidget {
child: Text(
searchText!,
style: TextStyle(
fontSize: fontSize,
color: Theme.of(context).colorScheme.onSurfaceVariant),
),
),