From f08a28f4a7d89d26b9b1b92077ea282fca937254 Mon Sep 17 00:00:00 2001 From: tomivt Date: Fri, 14 Mar 2025 09:45:00 +0100 Subject: [PATCH] Ready to merge --- .../example/what_the_fantasy/ui/screens/RecapSubmitPage.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/ui/screens/RecapSubmitPage.kt b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/ui/screens/RecapSubmitPage.kt index 65c74a3..4d906c4 100644 --- a/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/ui/screens/RecapSubmitPage.kt +++ b/What_The_Fantasy/app/src/main/java/com/example/what_the_fantasy/ui/screens/RecapSubmitPage.kt @@ -116,7 +116,7 @@ fun RecapSubmitPage( text = source ) Text( - text = character + text = "Character : $character" ) } } @@ -132,7 +132,8 @@ fun QuoteText(text: String ){ text = text, modifier = Modifier.padding(start = 10.dp, top = 15.dp), fontWeight = FontWeight(1000), - fontSize = 20.sp + fontSize = 20.sp, + color = Color.White ) }