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.
16 lines
359 B
16 lines
359 B
import 'package:ansu_ui/dialog/as_bottom_dialog.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
///`items` better with ASBottomDialogItem
|
|
showASBottomDialog(
|
|
BuildContext context, {
|
|
List<Widget>? items,
|
|
}) async {
|
|
return await showModalBottomSheet(
|
|
context: context,
|
|
builder: (context) {
|
|
return ASBottomDialog(items: items);
|
|
},
|
|
);
|
|
}
|