How to create a transparent full screen dialog on top of activity - Flutter

后端 未结 3 827
挽巷
挽巷 2021-02-05 06:32

I am trying to create a transparent full screen dialog on top of activity. I have tried following this thread but solution doesn\'t work.

In short , what I need

3条回答
  •  Happy的楠姐
    2021-02-05 07:20

    For me the following worked:

    showDialog(
      context: context,
      builder: (_) => Material(
        type: MaterialType.transparency,
        child: Center(
          // Aligns the container to center
          child: Container(
            // A simplified version of dialog.
            width: 100.0,
            height: 56.0,
            color: Colors.green,
            child: Text('jojo'),
          ),
        ),
      ),
    );
    

提交回复
热议问题