feat: UI/UX 개선 - 키워드 카드 디자인 통일 및 Pull to Refresh 개선 (v1.7.0)

- 키워드 카드 디자인을 DealItem과 동일한 스타일로 통일
- 활성화된 키워드 카드에 옅은 빨간색 배경 적용
- Pull to Refresh 인디케이터 z-index 높여서 잘림 문제 해결
- Top 버튼 위치 조정으로 메뉴키 가림 문제 해결
- Pull to Refresh 감도 향상 (threshold 120dp → 60dp)
This commit is contained in:
sanjeok77
2026-03-07 02:53:52 +09:00
parent 1048771c63
commit 378a8c09a8
4 changed files with 277 additions and 245 deletions

View File

@@ -24,7 +24,8 @@ android {
applicationId = "com.hotdeal.alarm"
minSdk = 31
targetSdk = 35
versionCode = 12
versionCode = 13
versionName = "1.7.0"
versionName = "1.6.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
@@ -67,7 +68,8 @@ android {
freeCompilerArgs += listOf(
"-opt-in=androidx.compose.material3.ExperimentalMaterial3Api",
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
"-opt-in=kotlinx.coroutines.FlowPreview"
"-opt-in=kotlinx.coroutines.FlowPreview",
"-opt-in=androidx.compose.foundation.ExperimentalFoundationApi"
)
}