59 lines
1.5 KiB
Dart
59 lines
1.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
class BrandBottomSheet extends StatelessWidget {
|
|
const BrandBottomSheet({
|
|
required this.child,
|
|
super.key,
|
|
this.isExpended = false,
|
|
});
|
|
|
|
final Widget child;
|
|
final bool isExpended;
|
|
|
|
@override
|
|
Widget build(final BuildContext context) {
|
|
final double mainHeight = MediaQuery.of(context).size.height -
|
|
MediaQuery.of(context).padding.top -
|
|
100;
|
|
late Widget innerWidget;
|
|
if (isExpended) {
|
|
innerWidget = Scaffold(
|
|
body: child,
|
|
);
|
|
} else {
|
|
final ThemeData themeData = Theme.of(context);
|
|
|
|
innerWidget = Material(
|
|
color: themeData.scaffoldBackgroundColor,
|
|
child: IntrinsicHeight(child: child),
|
|
);
|
|
}
|
|
return ConstrainedBox(
|
|
constraints: BoxConstraints(maxHeight: mainHeight + 4 + 6),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Center(
|
|
child: Container(
|
|
height: 4,
|
|
width: 30,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(2),
|
|
color: const Color.fromARGB(120, 120, 120, 100),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 6),
|
|
ClipRRect(
|
|
borderRadius: const BorderRadius.vertical(top: Radius.circular(20)),
|
|
child: ConstrainedBox(
|
|
constraints: BoxConstraints(maxHeight: mainHeight),
|
|
child: innerWidget,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|