| 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) => tlAddressSearch.TownLifeAddressSearch()) |
| ); |
| }, |
| style: ElevatedButton.styleFrom( |
| backgroundColor: Color(0xffd7d7d7), |
| minimumSize: Size(100, 40) |
| ), |
| child: Icon(Icons.add), |
| ), |
| ElevatedButton( |
| onPressed: () { |
| Navigator.push(context, |
| MaterialPageRoute( |
| builder: (context) => tlAddressSearch.TownLifeAddressSearch()) |
| ); |
| }, |
| style: ElevatedButton.styleFrom( |
| backgroundColor: Color(0xffd7d7d7), |
| minimumSize: Size(100, 40) |
| ), |
| child: Icon(Icons.add), |
| ), |
| ], |
| ) |
| ], |
| ); |
| } |
| ); |