showFlModalBottomSheet function
dynamic
showFlModalBottomSheet(
- BuildContext context, {
- required Widget child,
- String? title,
- String? subtitle,
- double? maxHeight,
Implementation
showFlModalBottomSheet(
BuildContext context, {
required Widget child,
String? title,
String? subtitle,
double? maxHeight,
}) {
showModalBottomSheet(
context: context,
builder: (context) => FlModalBottomSheet(
title: title,
subtitle: subtitle,
maxHeight: maxHeight,
child: child,
),
isScrollControlled: true,
);
}