Skip to content

Commit

Permalink
chore: 修改日志分享文案
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Nov 15, 2023
1 parent 81d9f52 commit de2d99b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions app/src/main/java/li/songe/gkd/ui/SettingsPage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,7 @@ fun SettingsPage() {
verticalAlignment = Alignment.CenterVertically,
modifier = Modifier
.fillMaxWidth()
.selectable(
selected = (option.second == store.enableDarkTheme),
.selectable(selected = (option.second == store.enableDarkTheme),
onClick = {
updateStorage(
storeFlow,
Expand Down Expand Up @@ -375,8 +374,7 @@ fun SettingsPage() {
verticalAlignment = Alignment.CenterVertically,
modifier = Modifier
.fillMaxWidth()
.selectable(
selected = (option.second == store.enableGroup),
.selectable(selected = (option.second == store.enableGroup),
onClick = {
updateStorage(
storeFlow,
Expand Down Expand Up @@ -481,7 +479,7 @@ fun SettingsPage() {
.then(modifier)
)
Text(
text = "上传日志(需科学上网)", modifier = Modifier
text = "生成链接(需科学上网)", modifier = Modifier
.clickable(onClick = {
showShareLogDlg = false
vm.viewModelScope.launchTry(Dispatchers.IO) {
Expand Down

0 comments on commit de2d99b

Please sign in to comment.