Skip to content

Commit

Permalink
more ui fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ErBWs committed Oct 21, 2024
1 parent b1377e5 commit fccaf09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/bean/card/bangumi_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class BangumiContent extends StatelessWidget {
return Expanded(
child: Padding(
// 多列
padding: const EdgeInsets.fromLTRB(4, 5, 0, 3),
padding: const EdgeInsets.fromLTRB(5, 3, 5, 3),
// 单列
// padding: const EdgeInsets.fromLTRB(14, 10, 4, 8),
child: Column(
Expand All @@ -113,7 +113,7 @@ class BangumiContent extends StatelessWidget {
fontWeight: FontWeight.w500,
letterSpacing: 0.3,
),
maxLines: 1,
maxLines: 3,
overflow: TextOverflow.ellipsis,
)),
],
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/plugin_editor/plugin_view_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ class _PluginViewPageState extends State<PluginViewPage> {
itemCount: pluginsController.pluginList.length,
itemBuilder: (context, index) {
return Card(
margin: const EdgeInsets.all(8.0),
margin: const EdgeInsets.fromLTRB(8, 8, 8, 0),
child: ListTile(
title: Text(
pluginsController.pluginList[index].name,
Expand Down

0 comments on commit fccaf09

Please sign in to comment.