show method

dynamic show(
  1. BuildContext context
)

显示弹窗

Implementation

show(BuildContext context) {
  showModalBottomSheet(
      context: context,
      backgroundColor: Colors.transparent,
      builder: (BuildContext context) {
        return this;
      }).then((value) {});
}