[Flutter] 경고창 띄우고 닫기
AlertDialog 경고창을 띄우는 방식이다. Navigator.pop(context) 을 통해서 창을 닫는 기능까지 구현 가능하다. TextButton( style: ButtonStyle( shadowColor: MaterialStateProperty.all(Colors.red), backgroundColor: MaterialStateProperty.all( Theme.of(context).cardColor, )), onPressed: () { showDialog( context: context, builder: (context) => AlertDialog( title: const Text('Are you nuts?'), // content: Text('Of course not!'), actions:..