반응형
목록플루터 alert (1)
아무고토 몰라효

👼🏻 초보 안드로이드 개발자가 매번 구글링하기 싫어서 정리하는 블로그 👼🏻 안녕하세요! 🙋🏻♀️ 오늘은 AlertDialog를 사용해볼거에요!!! 필수로 사용해야하는 BuildContext, Function(BuildContext) 만 일단 사용해보겠습니다! showDialog( context: context, // Alert을 띄울 context builder: (BuildContext context) { // Alert의 Context }, ); BulidContext 의 return이 필요합니다! showDialog( context: context, // 띄울 화면 builder: (BuildContext context) { // Alert창의 화면 return AlertDialog( title:..
Flutter/개발
2022. 3. 12. 17:35