diff --git a/lib/pages/dynamics/widgets/video_panel.dart b/lib/pages/dynamics/widgets/video_panel.dart index 6caece8a..6ec24bf1 100644 --- a/lib/pages/dynamics/widgets/video_panel.dart +++ b/lib/pages/dynamics/widgets/video_panel.dart @@ -157,9 +157,7 @@ Widget videoSeasonWidget( arguments: {'face': item.modules.moduleAuthor!.face}, ), child: Text( - item.modules.moduleAuthor?.type == null - ? '@${item.modules.moduleAuthor!.name}' - : item.modules.moduleAuthor!.name!, + '@${item.modules.moduleAuthor!.name}', style: TextStyle(color: theme.colorScheme.primary), ), ), diff --git a/lib/pages/dynamics_repost/view.dart b/lib/pages/dynamics_repost/view.dart index 39fd6a1d..4b41192b 100644 --- a/lib/pages/dynamics_repost/view.dart +++ b/lib/pages/dynamics_repost/view.dart @@ -138,7 +138,7 @@ class _RepostPanelState extends CommonPublishPageState { children: [ if (_pic != null) ...[ NetworkImgLayer( - radius: 8, + radius: 6, width: 40, height: 40, src: _pic, diff --git a/lib/pages/video/introduction/ugc/view.dart b/lib/pages/video/introduction/ugc/view.dart index 85bd7cdc..c515d58c 100644 --- a/lib/pages/video/introduction/ugc/view.dart +++ b/lib/pages/video/introduction/ugc/view.dart @@ -816,7 +816,7 @@ class _VideoInfoState extends State { return TextButton( onPressed: () => videoIntroController.actionRelationMod(context), style: TextButton.styleFrom( - padding: const EdgeInsets.symmetric(horizontal: 18), + tapTargetSize: MaterialTapTargetSize.shrinkWrap, visualDensity: const VisualDensity(vertical: -2.8), foregroundColor: attr != 0 ? t.colorScheme.outline @@ -832,7 +832,7 @@ class _VideoInfoState extends State { 4 || 6 => '已互关', 128 => '已拉黑', -10 => '特别关注', - _ => '关注' + _ => ' 关注 ' }, style: const TextStyle(fontSize: 13), ),