File tree Expand file tree Collapse file tree
presentation/src/main/java/com/threegap/bitnagil/presentation/terms Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ private fun TermsAgreementScreen(
156156 Spacer (modifier = Modifier .weight(1f ))
157157
158158 BitnagilTextButton (
159- text = " 시작하기 " ,
159+ text = " 다음 " ,
160160 onClick = onStartButtonClick,
161161 enabled = uiState.submitEnabled,
162162 modifier = Modifier
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import androidx.compose.foundation.layout.Row
66import androidx.compose.foundation.layout.fillMaxWidth
77import androidx.compose.foundation.layout.height
88import androidx.compose.foundation.layout.padding
9+ import androidx.compose.foundation.layout.size
910import androidx.compose.material3.Text
1011import androidx.compose.runtime.Composable
1112import androidx.compose.runtime.getValue
@@ -48,8 +49,9 @@ fun TermsAgreementItem(
4849 .clickableWithoutRipple { onCheckedChange() },
4950 ) {
5051 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),
5355 )
5456
5557 Text (
Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ fun ToggleAllAgreementsItem(
2929 onToggleAllAgreements : (Boolean ) -> Unit ,
3030 modifier : Modifier = Modifier ,
3131) {
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
3535
3636 Row (
3737 verticalAlignment = Alignment .CenterVertically ,
@@ -50,7 +50,7 @@ fun ToggleAllAgreementsItem(
5050 ),
5151 ) {
5252 BitnagilIcon (
53- id = R .drawable.ic_check ,
53+ id = R .drawable.ic_check_lg ,
5454 tint = iconColor,
5555 modifier = Modifier .size(24 .dp),
5656 )
You can’t perform that action at this time.
0 commit comments