Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- Jetpack Compose
- compose
- 티스토리챌린지
- algorithm
- android #androidstudio #compose #kotlin
- android #android studio #compose #kotlin
- android #androidstudio #fragmentdialog #kotlin
- android #androidstudio #zsh
- 카카오로그인
- androidstudio
- 오블완
- mutablestatelistof
- cs #computer #network #internet
- android12
- algorithm #
- alogrithm
- Dynamic Programing
- 안드로이드#코틀린
- KioskMode
- android #google console
- DFS
- BFS
- Android
- Bluetooth Permission
- algoritm
- AlertDailog
- 백준 5052
- mutablestateof
- kotlin
- 안드로이드 앱 아키텍처
Archives
- Today
- Total
스태틱하게 개발중
[Android] Compose 버튼 효과제거 본문
Text를 Clickable설정을 하고 클릭을 하면 전체 영역에 ripple 효과가 적용되어있는것을 확인하실 수 있습니다.
이 ripple 효과를 제거 확장함수로 만들어 사용하면 됩니다.
inline fun Modifier.clickableWithoutRipple(
crossinline onClick: () -> Unit = {},
): Modifier = composed {
this.clickable(
indication = null,
interactionSource = remember { MutableInteractionSource() }) {
onClick()
}
}
'Android' 카테고리의 다른 글
| [Android] 안드로이드 앱내부 저장 ls: /storage/emulated/: Permission denied (0) | 2025.10.15 |
|---|---|
| [Android] Compose 애니메이션 API 살펴보기 (0) | 2024.11.26 |
| [Android] 구글 플레이 콘솔 개발자 계정 인증 (0) | 2024.08.29 |
| [Android] Compose drawLine를 이용한 선긋기 (0) | 2024.06.25 |
| [Android] zsh: command not found: adb 환경변수 설정 (0) | 2023.10.19 |