BIT-544: Use "surface" as background color on Landing (#76)

Co-authored-by: joshua-livefront <139182194+joshua-livefront@users.noreply.github.com>
This commit is contained in:
Brian Yencho 2023-09-29 15:41:45 -05:00 committed by Álison Fernandes
parent 49bb602a37
commit 1f1985c0dc
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ fun CreateAccountScreen(
Column( Column(
modifier = Modifier modifier = Modifier
.fillMaxSize() .fillMaxSize()
.background(MaterialTheme.colorScheme.background), .background(MaterialTheme.colorScheme.surface),
verticalArrangement = spacedBy(8.dp), verticalArrangement = spacedBy(8.dp),
) { ) {
Row( Row(

View file

@ -59,7 +59,7 @@ fun LandingScreen(
Column( Column(
horizontalAlignment = Alignment.CenterHorizontally, horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier modifier = Modifier
.background(MaterialTheme.colorScheme.background) .background(MaterialTheme.colorScheme.surface)
.fillMaxHeight() .fillMaxHeight()
.padding(horizontal = 16.dp) .padding(horizontal = 16.dp)
.verticalScroll(scrollState), .verticalScroll(scrollState),

View file

@ -48,7 +48,7 @@ fun LoginScreen(
verticalArrangement = Arrangement.spacedBy(12.dp), verticalArrangement = Arrangement.spacedBy(12.dp),
modifier = Modifier modifier = Modifier
.fillMaxSize() .fillMaxSize()
.background(MaterialTheme.colorScheme.background) .background(MaterialTheme.colorScheme.surface)
.padding(horizontal = 16.dp, vertical = 32.dp), .padding(horizontal = 16.dp, vertical = 32.dp),
) { ) {