Use buttonComponent on Detail.kt
parent
5a943d4d9f
commit
1938a0282f
|
@ -18,6 +18,7 @@ import androidx.compose.ui.Modifier
|
|||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.text.font.FontWeight
|
||||
import androidx.compose.ui.unit.dp
|
||||
import main.component.buttonComponent
|
||||
|
||||
@Composable
|
||||
fun glossaryDetailedPage(glossary: List<Word>, onBackClick: () -> Unit) {
|
||||
|
@ -34,16 +35,7 @@ fun glossaryDetailedPage(glossary: List<Word>, onBackClick: () -> Unit) {
|
|||
|
||||
Spacer(modifier = Modifier.height(16.dp))
|
||||
|
||||
Button(
|
||||
onClick = { onBackClick() },
|
||||
colors = androidx.compose.material.ButtonDefaults.buttonColors(
|
||||
backgroundColor = customRedColor,
|
||||
contentColor = Color.White
|
||||
)
|
||||
) {
|
||||
Icon(imageVector = Icons.Default.ArrowBack, contentDescription = null)
|
||||
Text("Retour")
|
||||
}
|
||||
buttonComponent(text = "Retour", onClick = { onBackClick() })
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue