📅  最后修改于: 2022-03-11 14:48:53.430000             🧑  作者: Mango
Stack(
children: [
new Opacity(
opacity: 0.3,
child: const ModalBarrier(dismissible: false, color: Colors.grey),
),
Center(
child: Container(
Text('Hello'),
),
),
],
)