mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-03 02:29:29 +01:00
41 lines
1022 B
Dart
41 lines
1022 B
Dart
import 'package:fluffychat/config/themes.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class TwoColumnLayout extends StatelessWidget {
|
|
final Widget mainView;
|
|
final Widget sideView;
|
|
|
|
const TwoColumnLayout(
|
|
{Key key, @required this.mainView, @required this.sideView})
|
|
: 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(
|
|
children: [
|
|
Container(
|
|
clipBehavior: Clip.antiAlias,
|
|
decoration: BoxDecoration(),
|
|
width: 360.0,
|
|
child: mainView,
|
|
),
|
|
Container(
|
|
width: 1.0,
|
|
color: Theme.of(context).dividerColor,
|
|
),
|
|
Expanded(
|
|
child: ClipRRect(
|
|
child: sideView,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|