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,7 +54,6 @@ class SearchArticleController
builder: (context) { builder: (context) {
final theme = Theme.of(context); final theme = Theme.of(context);
return SingleChildScrollView( return SingleChildScrollView(
child: Padding(
padding: EdgeInsets.only( padding: EdgeInsets.only(
top: 20, top: 20,
left: 16, left: 16,
@@ -63,7 +62,7 @@ class SearchArticleController
), ),
child: Column( child: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.stretch,
children: [ children: [
const SizedBox(height: 10), const SizedBox(height: 10),
const Text('排序', style: TextStyle(fontSize: 16)), const Text('排序', style: TextStyle(fontSize: 16)),
@@ -118,7 +117,6 @@ class SearchArticleController
), ),
], ],
), ),
),
); );
}, },
); );

View File

@@ -34,7 +34,6 @@ class SearchUserController
builder: (context) { builder: (context) {
final theme = Theme.of(context); final theme = Theme.of(context);
return SingleChildScrollView( return SingleChildScrollView(
child: Padding(
padding: EdgeInsets.only( padding: EdgeInsets.only(
top: 20, top: 20,
left: 16, left: 16,
@@ -43,7 +42,7 @@ class SearchUserController
), ),
child: Column( child: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.stretch,
children: [ children: [
const SizedBox(height: 10), const SizedBox(height: 10),
const Text('用户粉丝数及等级排序顺序', style: TextStyle(fontSize: 16)), const Text('用户粉丝数及等级排序顺序', style: TextStyle(fontSize: 16)),
@@ -98,7 +97,6 @@ class SearchUserController
), ),
], ],
), ),
),
); );
}, },
); );

View File

@@ -154,7 +154,6 @@ class SearchVideoController
} }
return SingleChildScrollView( return SingleChildScrollView(
child: Padding(
padding: EdgeInsets.only( padding: EdgeInsets.only(
top: 20, top: 20,
left: 16, left: 16,
@@ -163,7 +162,7 @@ class SearchVideoController
), ),
child: Column( child: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.stretch,
children: [ children: [
const SizedBox(height: 10), const SizedBox(height: 10),
const Text('发布时间', style: TextStyle(fontSize: 16)), const Text('发布时间', style: TextStyle(fontSize: 16)),
@@ -282,7 +281,6 @@ class SearchVideoController
), ),
], ],
), ),
),
); );
}, },
), ),