mirror of
https://github.com/Myzel394/NumberHub.git
synced 2025-06-18 16:25:27 +02:00
fix: Undo unwanted changes
This commit is contained in:
parent
b13876dcdd
commit
f3e31da67c
@ -329,6 +329,14 @@ private fun SettingsScreen(
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (BuildConfig.STORE_LINK.isNotEmpty()) {
|
||||||
|
ListItem(
|
||||||
|
icon = Icons.Default.RateReview,
|
||||||
|
headlineText = stringResource(R.string.settings_rate_this_app),
|
||||||
|
modifier = Modifier.clickable { openLink(mContext, BuildConfig.STORE_LINK) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
ListItem(
|
ListItem(
|
||||||
icon = Icons.Default.Info,
|
icon = Icons.Default.Info,
|
||||||
headlineText = stringResource(R.string.settings_about_unitto),
|
headlineText = stringResource(R.string.settings_about_unitto),
|
||||||
|
@ -85,6 +85,34 @@ private fun AboutScreen(
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TERMS AND CONDITIONS
|
||||||
|
// item {
|
||||||
|
// ListItem(
|
||||||
|
// icon = Icons.Default.PrivacyTip,
|
||||||
|
// headlineText = stringResource(R.string.settings_terms_and_conditions),
|
||||||
|
// modifier = Modifier.clickable {
|
||||||
|
// openLink(
|
||||||
|
// mContext,
|
||||||
|
// "https://sadellie.github.io/unitto/terms",
|
||||||
|
// )
|
||||||
|
// },
|
||||||
|
// )
|
||||||
|
// }
|
||||||
|
|
||||||
|
// PRIVACY POLICY
|
||||||
|
item {
|
||||||
|
ListItem(
|
||||||
|
icon = Icons.Default.Policy,
|
||||||
|
headlineText = stringResource(R.string.settings_privacy_policy),
|
||||||
|
modifier = Modifier.clickable {
|
||||||
|
openLink(
|
||||||
|
mContext,
|
||||||
|
"https://github.com/Myzel394/NumberHub/blob/master/PRIVACY.md",
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
// OPEN SOURCE
|
// OPEN SOURCE
|
||||||
item {
|
item {
|
||||||
ListItem(
|
ListItem(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user