You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansu_ui/lib/dialog/as_show_bottom_dialog.dart

16 lines
359 B

4 years ago
import 'package:ansu_ui/dialog/as_bottom_dialog.dart';
import 'package:flutter/material.dart';
///`items` better with ASBottomDialogItem
showASBottomDialog(
BuildContext context, {
List<Widget>? items,
4 years ago
}) async {
return await showModalBottomSheet(
context: context,
builder: (context) {
return ASBottomDialog(items: items);
},
);
}