mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-04 16:03:13 +00:00
15 lines
454 B
Dart
15 lines
454 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:modal_bottom_sheet/modal_bottom_sheet.dart';
|
|
|
|
Future<T?> showBrandBottomSheet<T>({
|
|
required final BuildContext context,
|
|
required final WidgetBuilder builder,
|
|
}) =>
|
|
showCupertinoModalBottomSheet<T>(
|
|
builder: builder,
|
|
barrierColor: Colors.black45,
|
|
context: context,
|
|
shadow: const BoxShadow(color: Colors.transparent),
|
|
backgroundColor: Colors.transparent,
|
|
);
|