This commit is contained in:
lollipopkit
2023-08-20 23:30:44 +08:00
parent e643378249
commit 8111a83703
9 changed files with 182 additions and 183 deletions

View File

@@ -127,7 +127,7 @@ class _ServerPageState extends State<ServerPage>
Widget _buildBodySmall({
required ServerProvider provider,
required List<String> filtered,
EdgeInsets? padding = const EdgeInsets.fromLTRB(7, 10, 7, 7),
EdgeInsets? padding = const EdgeInsets.fromLTRB(7, 0, 7, 7),
bool buildTags = true,
}) {
final count = buildTags ? filtered.length + 2 : filtered.length + 1;
@@ -164,7 +164,7 @@ class _ServerPageState extends State<ServerPage>
child: _buildBodySmall(
provider: pro,
filtered: left,
padding: const EdgeInsets.fromLTRB(7, 10, 0, 7),
padding: const EdgeInsets.fromLTRB(7, 0, 0, 7),
buildTags: false,
),
),
@@ -172,7 +172,7 @@ class _ServerPageState extends State<ServerPage>
child: _buildBodySmall(
provider: pro,
filtered: right,
padding: const EdgeInsets.fromLTRB(0, 10, 7, 7),
padding: const EdgeInsets.fromLTRB(0, 0, 7, 7),
buildTags: false,
),
),