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
- 문제해결
- coroutines
- Developer
- 상태관리
- Google Play
- Android
- 개발시작
- EncryptedSharedPreferences
- SwiftUI
- 앱심사대응
- Swift
- 코루틴
- 문제개선
- 안드로이드
- ios
- 앱개발
- compose
- 개발자도전기
- chatGPT
- targetsdk
- Kotlin
- 초보개발자
- WorkManager
- foregroundservice
- 앱심사경험
- Java
- Android Studio
- SharedPreference
- Jitpack
- 클래스 설계
Archives
- Today
- Total
목록2024/11/09 (1)
개발린생

Android Compose의 리스트LazyColumn(⬇️)은 세로 목록, LazyRow(➡️)는 가로 목록을 표시할 때 사용한다.LazyColumn과 LazyRow 모두 항목이 화면에 나타날 때만 렌더링되어 메모리를 효율적으로 사용한다.또 Android RecyclerView와 비슷하지만 훨씬 간단한 문법으로 구현할 수 있다.LazyColumn 예시 코드:@Composablefun LazyColumnExample() { LazyColumn(modifier = Modifier.fillMaxSize()) { items(100) { index -> Text( text = "Item #$index", modifier ..
Dev Lab ✧.·˚/Android & iOS
2024. 11. 9. 23:43