Skip to content

Commit

Permalink
[Fix]: 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinuemong committed Jan 29, 2024
1 parent d649c98 commit 8a2b0d2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ fun SettingScreen(
}
},
hintTextContent = {
Text(text = stringResource(R.string.text_field_sample), color = Color.LightGray)
Text(text = stringResource(R.string.input_user_name), color = Color.LightGray)
},
contentInnerPadding = PaddingValues(horizontal = 10.dp),
contentOuterPadding = PaddingValues(horizontal = 10.dp)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.Surface
Expand Down Expand Up @@ -39,12 +40,14 @@ fun RegistrationNamingScreen(
.fillMaxSize()
.background(color = Color.Black),
) {
Text(
text = "Naming Screen",
fontSize = 20.sp,
color = Color.White,
modifier = Modifier.align(Alignment.Center)
)
Box(
modifier = Modifier
.fillMaxWidth()
.height(80.dp)
.padding(start = 10.dp,bottom = 12.67.dp)
){

}

Surface(
modifier = Modifier
Expand Down

0 comments on commit 8a2b0d2

Please sign in to comment.