[Jetpack Compose] AlertDialog 사용하기
: Compose 위에서 AlertDialog 를 사용해 봤습니다. ▶ AlertDialog 오버라이드 2개의 함수중 다음을 사용하겠습니다. (AndroidAlertDialog.android.kt) ▶ 인자중 default 값이 없는 요소를 찾아 빌드에러가 안나오게 만들어 줍니다. onDismissRequest , confirmButton 만 넣으면 일단 컴파일및 실행은 됩니다. Column() { Text("AlertDialog Test") AlertDialog( onDismissRequest = {}, confirmButton = {}, ) } ▶ confirmButton 에 Button 을 한개 추가해 줍니다. AlertDialog( onDismissRequest = {}, confirmButton..