mod: reply appbar title spacing

This commit is contained in:
guozhigq
2024-11-20 09:50:34 +08:00
parent 65bb5d7e3d
commit 121d32e403

View File

@ -89,9 +89,12 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
return AppBar( return AppBar(
toolbarHeight: 45, toolbarHeight: 45,
automaticallyImplyLeading: false, automaticallyImplyLeading: false,
title: Text( title: Padding(
'评论详情', padding: const EdgeInsets.only(left: 14),
style: Theme.of(context).textTheme.titleSmall, child: Text(
'评论详情',
style: Theme.of(context).textTheme.titleSmall,
),
), ),
actions: [ actions: [
IconButton( IconButton(
@ -102,7 +105,7 @@ class _VideoReplyReplyPanelState extends State<VideoReplyReplyPanel> {
Navigator.pop(context); Navigator.pop(context);
}, },
), ),
const SizedBox(width: 14), const SizedBox(width: 12),
], ],
); );
} }