Skip to content

Commit

Permalink
Fix: a little UI and bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmrh committed Jun 7, 2024
1 parent e3220db commit dd574f6
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyRow
import androidx.compose.foundation.lazy.items
Expand Down Expand Up @@ -190,7 +191,7 @@ fun HomeScreen(
navigateToIntro()
},
dialogTitle = "Hello,",
dialogText = "Welcome to Serene! It seems it seems it's your first time using this app, let's go through some introduction.",
dialogText = "Welcome to Serene! It seems it's your first time using this app, let's go through some introduction.",
confirmText = "Okay"
)
}
Expand Down Expand Up @@ -244,7 +245,8 @@ fun HomeScreen(
)
Text(
username ?: "Anon",
style = MaterialTheme.typography.titleMedium
style = MaterialTheme.typography.titleMedium,
modifier = Modifier.height(36.dp)
)
}
},
Expand Down

0 comments on commit dd574f6

Please sign in to comment.