Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-10-13 21:26:50 +08:00
parent 019cd9fda0
commit 11edabb890
3 changed files with 250 additions and 256 deletions

View File

@@ -54,70 +54,68 @@ class SearchArticleController
builder: (context) {
final theme = Theme.of(context);
return SingleChildScrollView(
child: Padding(
padding: EdgeInsets.only(
top: 20,
left: 16,
right: 16,
bottom: 100 + MediaQuery.viewPaddingOf(context).bottom,
),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const SizedBox(height: 10),
const Text('排序', style: TextStyle(fontSize: 16)),
const SizedBox(height: 10),
Wrap(
spacing: 8,
runSpacing: 8,
children: ArticleOrderType.values.map(
(e) {
final isCurr = e == articleOrderType.value;
return SearchText(
text: e.label,
onTap: (_) {
articleOrderType.value = e;
order = e.order;
onSortSearch(label: e.label);
},
bgColor: isCurr
? theme.colorScheme.secondaryContainer
: null,
textColor: isCurr
? theme.colorScheme.onSecondaryContainer
: null,
);
},
).toList(),
),
const SizedBox(height: 20),
const Text('分区', style: TextStyle(fontSize: 16)),
const SizedBox(height: 10),
Wrap(
spacing: 8,
runSpacing: 8,
children: ArticleZoneType.values.map(
(e) {
final isCurr = e == articleZoneType!.value;
return SearchText(
text: e.label,
onTap: (_) {
articleZoneType!.value = e;
onSortSearch(label: e.label);
},
bgColor: isCurr
? theme.colorScheme.secondaryContainer
: null,
textColor: isCurr
? theme.colorScheme.onSecondaryContainer
: null,
);
},
).toList(),
),
],
),
padding: EdgeInsets.only(
top: 20,
left: 16,
right: 16,
bottom: 100 + MediaQuery.viewPaddingOf(context).bottom,
),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
const SizedBox(height: 10),
const Text('排序', style: TextStyle(fontSize: 16)),
const SizedBox(height: 10),
Wrap(
spacing: 8,
runSpacing: 8,
children: ArticleOrderType.values.map(
(e) {
final isCurr = e == articleOrderType.value;
return SearchText(
text: e.label,
onTap: (_) {
articleOrderType.value = e;
order = e.order;
onSortSearch(label: e.label);
},
bgColor: isCurr
? theme.colorScheme.secondaryContainer
: null,
textColor: isCurr
? theme.colorScheme.onSecondaryContainer
: null,
);
},
).toList(),
),
const SizedBox(height: 20),
const Text('分区', style: TextStyle(fontSize: 16)),
const SizedBox(height: 10),
Wrap(
spacing: 8,
runSpacing: 8,
children: ArticleZoneType.values.map(
(e) {
final isCurr = e == articleZoneType!.value;
return SearchText(
text: e.label,
onTap: (_) {
articleZoneType!.value = e;
onSortSearch(label: e.label);
},
bgColor: isCurr
? theme.colorScheme.secondaryContainer
: null,
textColor: isCurr
? theme.colorScheme.onSecondaryContainer
: null,
);
},
).toList(),
),
],
),
);
},