adds flavor to the version descriptor in the bottom left of the drawer

This commit is contained in:
Vitor Pamplona
2023-05-29 18:06:35 -04:00
parent ac00694690
commit 1972297755
@@ -472,7 +472,7 @@ fun BottomContent(user: User, scaffoldState: ScaffoldState, nav: (String) -> Uni
) {
Text(
modifier = Modifier.padding(start = 16.dp),
text = "v" + BuildConfig.VERSION_NAME,
text = "v" + BuildConfig.VERSION_NAME + "-" + BuildConfig.FLAVOR.uppercase(),
fontSize = 12.sp,
fontWeight = FontWeight.Bold
)