[Flutter] 다이얼로그
·
Web & Android/Flutter
showDialog( context: context, builder: (context) { returnAlertDialog( title: Text('내 동네 선택'), content: Text('동네는 최소 1개 이상 최대 2개까지 설정할 수 있어요.', style: TextStyle(fontSize: 15, color: Color(0xff606060)),), actions: [ Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: [ ElevatedButton( onPressed: () { Navigator.push(context, MaterialPageRoute(//동네 선택 페이지로 이동 builder: (context) => tlAdd..