fix: make fluffy usable at 720 px wide

This commit is contained in:
Raatty 2022-03-13 15:42:01 +13:00
parent c4609edb52
commit c55b1be8c7
1 changed files with 0 additions and 5 deletions

View File

@ -1,7 +1,5 @@
import 'package:flutter/material.dart';
import 'package:fluffychat/config/themes.dart';
class TwoColumnLayout extends StatelessWidget {
final Widget mainView;
final Widget sideView;
@ -13,9 +11,6 @@ class TwoColumnLayout extends StatelessWidget {
}) : super(key: key);
@override
Widget build(BuildContext context) {
if (MediaQuery.of(context).size.width <= FluffyThemes.columnWidth * 2) {
return mainView;
}
return ScaffoldMessenger(
child: Scaffold(
body: Row(