File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
presentation/src/main/java/com/threegap/bitnagil/presentation/terms Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ private fun TermsAgreementScreen(
156
156
Spacer (modifier = Modifier .weight(1f ))
157
157
158
158
BitnagilTextButton (
159
- text = " 시작하기 " ,
159
+ text = " 다음 " ,
160
160
onClick = onStartButtonClick,
161
161
enabled = uiState.submitEnabled,
162
162
modifier = Modifier
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import androidx.compose.foundation.layout.Row
6
6
import androidx.compose.foundation.layout.fillMaxWidth
7
7
import androidx.compose.foundation.layout.height
8
8
import androidx.compose.foundation.layout.padding
9
+ import androidx.compose.foundation.layout.size
9
10
import androidx.compose.material3.Text
10
11
import androidx.compose.runtime.Composable
11
12
import androidx.compose.runtime.getValue
@@ -48,8 +49,9 @@ fun TermsAgreementItem(
48
49
.clickableWithoutRipple { onCheckedChange() },
49
50
) {
50
51
BitnagilIcon (
51
- id = R .drawable.ic_check,
52
- tint = if (isChecked) BitnagilTheme .colors.navy500 else BitnagilTheme .colors.navy100,
52
+ id = R .drawable.ic_check_md,
53
+ tint = if (isChecked) BitnagilTheme .colors.orange500 else BitnagilTheme .colors.coolGray90,
54
+ modifier = Modifier .size(20 .dp),
53
55
)
54
56
55
57
Text (
Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ fun ToggleAllAgreementsItem(
29
29
onToggleAllAgreements : (Boolean ) -> Unit ,
30
30
modifier : Modifier = Modifier ,
31
31
) {
32
- val backgroundColor = if (isAllAgreed) BitnagilTheme .colors.lightBlue75 else BitnagilTheme .colors.coolGray99
33
- val iconColor = if (isAllAgreed) BitnagilTheme .colors.navy500 else BitnagilTheme .colors.navy100
34
- val textColor = if (isAllAgreed) BitnagilTheme .colors.navy500 else BitnagilTheme .colors.coolGray50
32
+ val backgroundColor = if (isAllAgreed) BitnagilTheme .colors.orange50 else BitnagilTheme .colors.coolGray99
33
+ val iconColor = if (isAllAgreed) BitnagilTheme .colors.orange500 else BitnagilTheme .colors.coolGray90
34
+ val textColor = if (isAllAgreed) BitnagilTheme .colors.orange500 else BitnagilTheme .colors.coolGray90
35
35
36
36
Row (
37
37
verticalAlignment = Alignment .CenterVertically ,
@@ -50,7 +50,7 @@ fun ToggleAllAgreementsItem(
50
50
),
51
51
) {
52
52
BitnagilIcon (
53
- id = R .drawable.ic_check ,
53
+ id = R .drawable.ic_check_lg ,
54
54
tint = iconColor,
55
55
modifier = Modifier .size(24 .dp),
56
56
)
You can’t perform that action at this time.
0 commit comments