Skip to content

Commit

Permalink
refactor :: 파라미터 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
diddbsgh committed Feb 2, 2024
1 parent 418441a commit 234c457
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,27 +1,23 @@
package team.retum.signup.ui

import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
import team.retum.signup.R
import team.returm.jobisdesignsystemv2.appbar.JobisLargeTopAppBar
import team.returm.jobisdesignsystemv2.button.ButtonColor
import team.returm.jobisdesignsystemv2.button.JobisButton
import team.returm.jobisdesignsystemv2.foundation.JobisIcon
import team.returm.jobisdesignsystemv2.foundation.JobisTheme
import team.returm.jobisdesignsystemv2.textfield.DescriptionType
import team.returm.jobisdesignsystemv2.textfield.JobisTextField
Expand All @@ -48,11 +44,11 @@ fun SettingPasswordScreen(
password = { password },
checkPassword = { checkPassword },
onPasswordChange = { password = it },
onCheckPassword = { password = it },
onCheckPassword = { checkPassword = it },
)
Spacer(modifier = Modifier.weight(1f))
JobisButton(
modifier = Modifier.padding(bottom = 24.dp),
modifier = Modifier.padding(vertical = 12.dp),
text = stringResource(id = R.string.next),
color = ButtonColor.Primary,
onClick = { },
Expand Down

0 comments on commit 234c457

Please sign in to comment.