18 lines
491 B
Dart
18 lines
491 B
Dart
// ignore_for_file: prefer_function_declarations_over_variables
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:modal_bottom_sheet/modal_bottom_sheet.dart';
|
|
import 'package:ui_kit/ui_kit.dart';
|
|
|
|
final showBottomSheetFunc = (Widget children, context) {
|
|
return showCupertinoModalBottomSheet(
|
|
context: context,
|
|
backgroundColor: whiteColor,
|
|
builder: (context) => Container(
|
|
color: whiteColor,
|
|
width: width(context) * 100,
|
|
child: children,
|
|
),
|
|
);
|
|
};
|