Extracted project name as a constant
This commit is contained in:
parent
27e8efcaf7
commit
f1868844a2
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ class App {
|
|||
|
||||
if (isOpen) {
|
||||
Window(
|
||||
title = "Gitnuro",
|
||||
title = AppConstants.APP_NAME,
|
||||
onCloseRequest = {
|
||||
isOpen = false
|
||||
},
|
||||
|
|
|
@ -119,7 +119,7 @@ fun HomeButtons(
|
|||
modifier = Modifier.padding(end = 32.dp),
|
||||
) {
|
||||
Text(
|
||||
text = "Gitnuro",
|
||||
text = AppConstants.APP_NAME,
|
||||
fontSize = 32.sp,
|
||||
color = MaterialTheme.colors.primaryTextColor,
|
||||
modifier = Modifier.padding(bottom = 16.dp),
|
||||
|
|
Loading…
Reference in a new issue