diff --git a/lib/screens/user_profile_screen.dart b/lib/screens/user_profile_screen.dart index 2253201..d58a6cb 100644 --- a/lib/screens/user_profile_screen.dart +++ b/lib/screens/user_profile_screen.dart @@ -83,11 +83,6 @@ class _UserProfileScreenState extends State { spacing: 10.0, runSpacing: 10.0, children: [ - if (notMyProfile) ...[ - buildConnectionStatusToggle( - context, profile, connectionManager), - buildBlockToggle(context, profile, blocksManager), - ], ElevatedButton( onPressed: () => context.pushNamed( ScreenPaths.userPosts, @@ -102,6 +97,18 @@ class _UserProfileScreenState extends State { ], ), const VerticalPadding(), + Wrap( + spacing: 10.0, + runSpacing: 10.0, + children: [ + if (notMyProfile) ...[ + buildConnectionStatusToggle( + context, profile, connectionManager), + buildBlockToggle(context, profile, blocksManager), + ], + ], + ), + const VerticalPadding(), HtmlTextViewerControl( content: profile.note, onTapUrl: (url) async {