feat(settings): 为关于页面添加 Github 仓库

This commit is contained in:
Super12138 2025-02-05 17:52:09 +08:00
parent c26d41b232
commit 66f5e9f638
4 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,56 @@
package cn.super12138.todo.ui.icons
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
val GithubIcon: ImageVector
get() {
if (_GithubIcon != null) {
return _GithubIcon!!
}
_GithubIcon = ImageVector.Builder(
name = "GithubIcon",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f
).apply {
path(fill = SolidColor(Color(0xFF000000))) {
moveTo(12.5f, 0.75f)
curveTo(6.146f, 0.75f, 1f, 5.896f, 1f, 12.25f)
curveToRelative(0f, 5.089f, 3.292f, 9.387f, 7.863f, 10.91f)
curveToRelative(0.575f, 0.101f, 0.79f, -0.244f, 0.79f, -0.546f)
curveToRelative(0f, -0.273f, -0.014f, -1.178f, -0.014f, -2.142f)
curveToRelative(-2.889f, 0.532f, -3.636f, -0.704f, -3.866f, -1.35f)
curveToRelative(-0.13f, -0.331f, -0.69f, -1.352f, -1.18f, -1.625f)
curveToRelative(-0.402f, -0.216f, -0.977f, -0.748f, -0.014f, -0.762f)
curveToRelative(0.906f, -0.014f, 1.553f, 0.834f, 1.769f, 1.179f)
curveToRelative(1.035f, 1.74f, 2.688f, 1.25f, 3.349f, 0.948f)
curveToRelative(0.1f, -0.747f, 0.402f, -1.25f, 0.733f, -1.538f)
curveToRelative(-2.559f, -0.287f, -5.232f, -1.279f, -5.232f, -5.678f)
curveToRelative(0f, -1.25f, 0.445f, -2.285f, 1.178f, -3.09f)
curveToRelative(-0.115f, -0.288f, -0.517f, -1.467f, 0.115f, -3.048f)
curveToRelative(0f, 0f, 0.963f, -0.302f, 3.163f, 1.179f)
curveToRelative(0.92f, -0.259f, 1.897f, -0.388f, 2.875f, -0.388f)
curveToRelative(0.977f, 0f, 1.955f, 0.13f, 2.875f, 0.388f)
curveToRelative(2.2f, -1.495f, 3.162f, -1.179f, 3.162f, -1.179f)
curveToRelative(0.633f, 1.581f, 0.23f, 2.76f, 0.115f, 3.048f)
curveToRelative(0.733f, 0.805f, 1.179f, 1.825f, 1.179f, 3.09f)
curveToRelative(0f, 4.413f, -2.688f, 5.39f, -5.247f, 5.678f)
curveToRelative(0.417f, 0.36f, 0.776f, 1.05f, 0.776f, 2.128f)
curveToRelative(0f, 1.538f, -0.014f, 2.774f, -0.014f, 3.162f)
curveToRelative(0f, 0.302f, 0.216f, 0.662f, 0.79f, 0.547f)
curveTo(20.709f, 21.637f, 24f, 17.324f, 24f, 12.25f)
curveTo(24f, 5.896f, 18.854f, 0.75f, 12.5f, 0.75f)
close()
}
}.build()
return _GithubIcon!!
}
@Suppress("ObjectPropertyName")
private var _GithubIcon: ImageVector? = null

View file

@ -21,6 +21,7 @@ import androidx.compose.ui.res.stringResource
import cn.super12138.todo.R
import cn.super12138.todo.constants.Constants
import cn.super12138.todo.ui.components.LargeTopAppBarScaffold
import cn.super12138.todo.ui.icons.GithubIcon
import cn.super12138.todo.ui.pages.settings.components.SettingsItem
import cn.super12138.todo.utils.getAppVersion
@ -59,6 +60,15 @@ fun SettingsAbout(
context.startActivity(intent)
}
)
SettingsItem(
leadingIcon = GithubIcon,
title = stringResource(R.string.pref_view_on_github),
description = stringResource(R.string.pref_view_on_github_desc),
onClick = {
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(Constants.GITHUB_REPO))
context.startActivity(intent)
}
)
SettingsItem(
leadingIcon = Icons.Outlined.Balance,
title = stringResource(R.string.pref_licence),

View file

@ -79,4 +79,6 @@
<string name="pref_show_completed">显示已完成待办</string>
<string name="pref_show_completed_desc">在待办列表里显示已完成的待办</string>
<string name="pref_category_todo_list">待办列表</string>
<string name="pref_view_on_github">在 GitHub 上查看</string>
<string name="pref_view_on_github_desc">查看源代码、提交错误报告和改进建议</string>
</resources>

View file

@ -80,4 +80,6 @@
<string name="pref_show_completed">Show Completed Tasks</string>
<string name="pref_show_completed_desc">Show completed tasks in to-do list</string>
<string name="pref_category_todo_list">To-Do List</string>
<string name="pref_view_on_github">View On GitHub</string>
<string name="pref_view_on_github_desc">View source code, submit bug reports, and improvement suggestions</string>
</resources>