diff --git a/lib/views/messageview.dart b/lib/views/messageview.dart index 7c029a11..e1281651 100644 --- a/lib/views/messageview.dart +++ b/lib/views/messageview.dart @@ -138,8 +138,16 @@ class _MessageViewState extends State { }) : null, appBar: AppBar( - // setting leading to null makes it do the default behaviour; container() hides it - leading: Provider.of(context).uiColumns(appState.isLandscape(context)).length > 1 ? Container() : null, + // setting leading(Width) to null makes it do the default behaviour; container() hides it + leadingWidth: Provider.of(context).uiColumns(appState.isLandscape(context)).length > 1 ? 0 : null, + leading: Provider.of(context).uiColumns(appState.isLandscape(context)).length > 1 + ? Container( + padding: EdgeInsets.zero, + margin: EdgeInsets.zero, + width: 0, + height: 0, + ) + : null, title: Row(children: [ ProfileImage( imagePath: Provider.of(context).isExperimentEnabled(ImagePreviewsExperiment)