사용자 도구

사이트 도구


android:토스트메시지
토스트메시지

문서의 이전 판입니다!


개요

토스트 메시지 만들기

    val notification = rememberSaveable { mutableStateOf("") }
    if (notification.value.isNotEmpty()) {
        Toast.makeText(LocalContext.current, notification.value, Toast.LENGTH_LONG).show()
        notification.value = ""
    }

토스트 메시지 부르기

Text(text = "Cancel", modifier = Modifier.clickable { notification.value = "Cancelled" })
로그인하면 댓글을 남길 수 있습니다.

android/토스트메시지.1722092068.txt.gz · 마지막으로 수정됨: 2024/07/27 23:54 저자 이거니맨