mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
39 lines
928 B
Dart
39 lines
928 B
Dart
import 'dart:math';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
class MaxWidthBody extends StatelessWidget {
|
|
final Widget child;
|
|
final double maxWidth;
|
|
final bool withScrolling;
|
|
|
|
const MaxWidthBody({
|
|
this.child,
|
|
this.maxWidth = 600,
|
|
this.withScrolling = false,
|
|
Key key,
|
|
}) : super(key: key);
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return LayoutBuilder(
|
|
builder: (context, constraints) {
|
|
final padding = EdgeInsets.symmetric(
|
|
horizontal: max(0, (constraints.maxWidth - maxWidth) / 2),
|
|
);
|
|
return withScrolling
|
|
? SingleChildScrollView(
|
|
physics: ScrollPhysics(),
|
|
child: Padding(
|
|
padding: padding,
|
|
child: child,
|
|
),
|
|
)
|
|
: Padding(
|
|
padding: padding,
|
|
child: child,
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|