2025-11-26 02:30:03 +00:00
|
|
|
|
package com.example.smarthome.ui
|
|
|
|
|
|
|
2025-11-27 08:00:44 +00:00
|
|
|
|
import androidx.compose.foundation.Image
|
2025-11-26 02:30:03 +00:00
|
|
|
|
import androidx.compose.foundation.background
|
|
|
|
|
|
import androidx.compose.foundation.border
|
|
|
|
|
|
import androidx.compose.foundation.clickable
|
|
|
|
|
|
import androidx.compose.foundation.interaction.MutableInteractionSource
|
|
|
|
|
|
import androidx.compose.foundation.layout.*
|
|
|
|
|
|
import androidx.compose.foundation.lazy.LazyColumn
|
|
|
|
|
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
|
|
|
|
|
import androidx.compose.material3.*
|
|
|
|
|
|
import androidx.compose.runtime.*
|
|
|
|
|
|
import androidx.compose.ui.Alignment
|
|
|
|
|
|
import androidx.compose.ui.Modifier
|
|
|
|
|
|
import androidx.compose.ui.draw.clip
|
|
|
|
|
|
import androidx.compose.ui.draw.shadow
|
|
|
|
|
|
import androidx.compose.ui.graphics.Brush
|
|
|
|
|
|
import androidx.compose.ui.graphics.Color
|
2025-11-27 08:00:44 +00:00
|
|
|
|
import androidx.compose.ui.layout.ContentScale
|
|
|
|
|
|
import androidx.compose.ui.platform.LocalContext
|
|
|
|
|
|
import androidx.compose.ui.res.painterResource
|
2025-11-26 02:30:03 +00:00
|
|
|
|
import androidx.compose.ui.text.font.FontWeight
|
|
|
|
|
|
import androidx.compose.ui.unit.dp
|
|
|
|
|
|
import androidx.compose.ui.unit.sp
|
2025-11-27 08:00:44 +00:00
|
|
|
|
import com.example.smarthome.data.BackgroundManager
|
2025-11-26 02:30:03 +00:00
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
|
fun SettingsScreen(onBack: () -> Unit) {
|
|
|
|
|
|
Column(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.fillMaxSize()
|
|
|
|
|
|
.background(Color(0xFF121212))
|
|
|
|
|
|
.padding(16.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
// 顶部栏
|
|
|
|
|
|
SettingsTopBar(onBack = onBack)
|
|
|
|
|
|
|
|
|
|
|
|
Spacer(modifier = Modifier.height(24.dp))
|
|
|
|
|
|
|
|
|
|
|
|
// 设置内容
|
|
|
|
|
|
SettingsContentList()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
|
fun SettingsContentList() {
|
|
|
|
|
|
LazyColumn(
|
|
|
|
|
|
modifier = Modifier.fillMaxSize(),
|
|
|
|
|
|
verticalArrangement = Arrangement.spacedBy(16.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
item { SettingsSection(title = "账户设置") {
|
|
|
|
|
|
SettingsItem(
|
|
|
|
|
|
title = "个人信息",
|
|
|
|
|
|
subtitle = "管理您的个人资料",
|
|
|
|
|
|
onClick = { }
|
|
|
|
|
|
)
|
|
|
|
|
|
SettingsItem(
|
|
|
|
|
|
title = "账户安全",
|
|
|
|
|
|
subtitle = "密码和安全设置",
|
|
|
|
|
|
onClick = { }
|
|
|
|
|
|
)
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
item { SettingsSection(title = "设备管理") {
|
|
|
|
|
|
var autoConnect by remember { mutableStateOf(true) }
|
|
|
|
|
|
SettingsSwitchItem(
|
|
|
|
|
|
title = "自动连接",
|
|
|
|
|
|
subtitle = "自动连接到家庭网络",
|
|
|
|
|
|
checked = autoConnect,
|
|
|
|
|
|
onCheckedChange = { autoConnect = it }
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
var notifications by remember { mutableStateOf(true) }
|
|
|
|
|
|
SettingsSwitchItem(
|
|
|
|
|
|
title = "设备通知",
|
|
|
|
|
|
subtitle = "接收设备状态通知",
|
|
|
|
|
|
checked = notifications,
|
|
|
|
|
|
onCheckedChange = { notifications = it }
|
|
|
|
|
|
)
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
item { SettingsSection(title = "显示设置") {
|
2025-11-27 08:00:44 +00:00
|
|
|
|
BackgroundSelector()
|
|
|
|
|
|
|
|
|
|
|
|
val context = LocalContext.current
|
|
|
|
|
|
val selectedBg by BackgroundManager.selectedBackground.collectAsState()
|
|
|
|
|
|
// 深色模式根据当前背景是否为暗色来判断
|
|
|
|
|
|
val isDarkMode = BackgroundManager.backgrounds.getOrNull(selectedBg)?.isDark ?: false
|
|
|
|
|
|
|
2025-11-26 02:30:03 +00:00
|
|
|
|
SettingsSwitchItem(
|
|
|
|
|
|
title = "深色模式",
|
|
|
|
|
|
subtitle = "使用深色主题",
|
2025-11-27 08:00:44 +00:00
|
|
|
|
checked = isDarkMode,
|
|
|
|
|
|
onCheckedChange = { dark ->
|
|
|
|
|
|
// 切换深色/浅色模式时自动更换背景
|
|
|
|
|
|
if (dark) {
|
|
|
|
|
|
BackgroundManager.setBackground(context, 2) // 紫金绸
|
|
|
|
|
|
} else {
|
|
|
|
|
|
BackgroundManager.setBackground(context, 0) // 丝绸白
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-26 02:30:03 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
SettingsItem(
|
|
|
|
|
|
title = "语言",
|
|
|
|
|
|
subtitle = "简体中文",
|
|
|
|
|
|
onClick = { }
|
|
|
|
|
|
)
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
item { SettingsSection(title = "关于") {
|
|
|
|
|
|
SettingsItem(
|
|
|
|
|
|
title = "版本信息",
|
|
|
|
|
|
subtitle = "v1.0.0",
|
|
|
|
|
|
onClick = { }
|
|
|
|
|
|
)
|
|
|
|
|
|
SettingsItem(
|
|
|
|
|
|
title = "隐私政策",
|
|
|
|
|
|
subtitle = "查看隐私政策",
|
|
|
|
|
|
onClick = { }
|
|
|
|
|
|
)
|
|
|
|
|
|
SettingsItem(
|
|
|
|
|
|
title = "用户协议",
|
|
|
|
|
|
subtitle = "查看用户协议",
|
|
|
|
|
|
onClick = { }
|
|
|
|
|
|
)
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
item {
|
|
|
|
|
|
Spacer(modifier = Modifier.height(16.dp))
|
|
|
|
|
|
LogoutButton(onClick = { })
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
|
fun SettingsTopBar(onBack: () -> Unit) {
|
|
|
|
|
|
Row(
|
|
|
|
|
|
modifier = Modifier.fillMaxWidth(),
|
|
|
|
|
|
horizontalArrangement = Arrangement.SpaceBetween,
|
|
|
|
|
|
verticalAlignment = Alignment.CenterVertically
|
|
|
|
|
|
) {
|
|
|
|
|
|
Row(
|
|
|
|
|
|
horizontalArrangement = Arrangement.spacedBy(12.dp),
|
|
|
|
|
|
verticalAlignment = Alignment.CenterVertically
|
|
|
|
|
|
) {
|
|
|
|
|
|
Box(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.size(40.dp)
|
|
|
|
|
|
.clip(RoundedCornerShape(12.dp))
|
2025-11-27 02:56:42 +00:00
|
|
|
|
.background(Color(0x50121212))
|
2025-11-26 02:30:03 +00:00
|
|
|
|
.clickable(
|
|
|
|
|
|
indication = null,
|
|
|
|
|
|
interactionSource = remember { MutableInteractionSource() }
|
|
|
|
|
|
) { onBack() },
|
|
|
|
|
|
contentAlignment = Alignment.Center
|
|
|
|
|
|
) {
|
|
|
|
|
|
Text(text = "←", color = Color.White, fontSize = 20.sp)
|
|
|
|
|
|
}
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = "设置",
|
|
|
|
|
|
style = MaterialTheme.typography.titleLarge,
|
|
|
|
|
|
fontWeight = FontWeight.Bold,
|
|
|
|
|
|
color = Color.White
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
|
fun SettingsSection(title: String, content: @Composable ColumnScope.() -> Unit) {
|
|
|
|
|
|
Column(
|
|
|
|
|
|
modifier = Modifier.fillMaxWidth(),
|
|
|
|
|
|
verticalArrangement = Arrangement.spacedBy(12.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = title,
|
|
|
|
|
|
fontSize = 14.sp,
|
|
|
|
|
|
fontWeight = FontWeight.Medium,
|
|
|
|
|
|
color = Color(0xFF9AA0A6),
|
|
|
|
|
|
modifier = Modifier.padding(horizontal = 4.dp)
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
Box(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.fillMaxWidth()
|
|
|
|
|
|
.clip(RoundedCornerShape(24.dp))
|
2025-11-27 02:56:42 +00:00
|
|
|
|
.background(Color(0x50121212))
|
2025-11-26 02:30:03 +00:00
|
|
|
|
.padding(8.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
Column(
|
|
|
|
|
|
modifier = Modifier.fillMaxWidth(),
|
|
|
|
|
|
verticalArrangement = Arrangement.spacedBy(4.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
content()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
|
fun SettingsItem(
|
|
|
|
|
|
title: String,
|
|
|
|
|
|
subtitle: String,
|
|
|
|
|
|
onClick: () -> Unit
|
|
|
|
|
|
) {
|
|
|
|
|
|
Box(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.fillMaxWidth()
|
|
|
|
|
|
.clip(RoundedCornerShape(16.dp))
|
2025-11-27 02:56:42 +00:00
|
|
|
|
.background(Color(0x33121212))
|
2025-11-26 02:30:03 +00:00
|
|
|
|
.clickable(
|
|
|
|
|
|
indication = null,
|
|
|
|
|
|
interactionSource = remember { MutableInteractionSource() }
|
|
|
|
|
|
) { onClick() }
|
|
|
|
|
|
.padding(16.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
Row(
|
|
|
|
|
|
modifier = Modifier.fillMaxWidth(),
|
|
|
|
|
|
horizontalArrangement = Arrangement.SpaceBetween,
|
|
|
|
|
|
verticalAlignment = Alignment.CenterVertically
|
|
|
|
|
|
) {
|
|
|
|
|
|
Column(
|
|
|
|
|
|
verticalArrangement = Arrangement.spacedBy(4.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = title,
|
|
|
|
|
|
fontSize = 16.sp,
|
|
|
|
|
|
fontWeight = FontWeight.Medium,
|
|
|
|
|
|
color = Color.White
|
|
|
|
|
|
)
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = subtitle,
|
|
|
|
|
|
fontSize = 13.sp,
|
|
|
|
|
|
color = Color(0xFF9AA0A6)
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = "›",
|
|
|
|
|
|
fontSize = 24.sp,
|
|
|
|
|
|
color = Color(0xFF9AA0A6)
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
|
fun SettingsSwitchItem(
|
|
|
|
|
|
title: String,
|
|
|
|
|
|
subtitle: String,
|
|
|
|
|
|
checked: Boolean,
|
|
|
|
|
|
onCheckedChange: (Boolean) -> Unit
|
|
|
|
|
|
) {
|
|
|
|
|
|
Box(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.fillMaxWidth()
|
|
|
|
|
|
.clip(RoundedCornerShape(16.dp))
|
2025-11-27 02:56:42 +00:00
|
|
|
|
.background(Color(0x33121212))
|
2025-11-26 02:30:03 +00:00
|
|
|
|
.padding(16.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
Row(
|
|
|
|
|
|
modifier = Modifier.fillMaxWidth(),
|
|
|
|
|
|
horizontalArrangement = Arrangement.SpaceBetween,
|
|
|
|
|
|
verticalAlignment = Alignment.CenterVertically
|
|
|
|
|
|
) {
|
|
|
|
|
|
Column(
|
|
|
|
|
|
modifier = Modifier.weight(1f),
|
|
|
|
|
|
verticalArrangement = Arrangement.spacedBy(4.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = title,
|
|
|
|
|
|
fontSize = 16.sp,
|
|
|
|
|
|
fontWeight = FontWeight.Medium,
|
|
|
|
|
|
color = Color.White
|
|
|
|
|
|
)
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = subtitle,
|
|
|
|
|
|
fontSize = 13.sp,
|
|
|
|
|
|
color = Color(0xFF9AA0A6)
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CustomSwitch(
|
|
|
|
|
|
checked = checked,
|
|
|
|
|
|
onCheckedChange = onCheckedChange
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
|
fun CustomSwitch(
|
|
|
|
|
|
checked: Boolean,
|
|
|
|
|
|
onCheckedChange: (Boolean) -> Unit
|
|
|
|
|
|
) {
|
|
|
|
|
|
Box(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.size(52.dp, 30.dp)
|
|
|
|
|
|
.clip(RoundedCornerShape(15.dp))
|
|
|
|
|
|
.background(
|
|
|
|
|
|
if (checked) {
|
|
|
|
|
|
Brush.linearGradient(
|
|
|
|
|
|
listOf(Color(0xFFA9F0FF), Color(0xFFB89CFF))
|
|
|
|
|
|
)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
Brush.linearGradient(
|
|
|
|
|
|
listOf(Color(0x33222222), Color(0x33222222))
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
)
|
|
|
|
|
|
.clickable(
|
|
|
|
|
|
indication = null,
|
|
|
|
|
|
interactionSource = remember { MutableInteractionSource() }
|
|
|
|
|
|
) { onCheckedChange(!checked) }
|
|
|
|
|
|
.padding(3.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
Box(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.size(24.dp)
|
|
|
|
|
|
.clip(RoundedCornerShape(12.dp))
|
|
|
|
|
|
.background(Color.White)
|
|
|
|
|
|
.align(if (checked) Alignment.CenterEnd else Alignment.CenterStart)
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
|
fun LogoutButton(onClick: () -> Unit) {
|
|
|
|
|
|
Box(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.fillMaxWidth()
|
|
|
|
|
|
.height(56.dp)
|
2025-11-27 02:56:42 +00:00
|
|
|
|
.shadow(8.dp, RoundedCornerShape(24.dp))
|
2025-11-26 02:30:03 +00:00
|
|
|
|
.clip(RoundedCornerShape(24.dp))
|
|
|
|
|
|
.background(
|
|
|
|
|
|
Brush.linearGradient(
|
|
|
|
|
|
listOf(Color(0xFFFF6B6B), Color(0xFFFF5252))
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
.clickable(
|
|
|
|
|
|
indication = null,
|
|
|
|
|
|
interactionSource = remember { MutableInteractionSource() }
|
|
|
|
|
|
) { onClick() },
|
|
|
|
|
|
contentAlignment = Alignment.Center
|
|
|
|
|
|
) {
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = "退出登录",
|
|
|
|
|
|
fontSize = 16.sp,
|
|
|
|
|
|
fontWeight = FontWeight.Bold,
|
|
|
|
|
|
color = Color.White
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
|
fun SettingsContent() {
|
|
|
|
|
|
Column(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.fillMaxSize()
|
|
|
|
|
|
.padding(16.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
// 顶部标题
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = "设置",
|
|
|
|
|
|
style = MaterialTheme.typography.titleLarge,
|
|
|
|
|
|
fontWeight = FontWeight.Bold,
|
|
|
|
|
|
color = Color.White,
|
|
|
|
|
|
modifier = Modifier.padding(bottom = 24.dp)
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// 设置内容
|
|
|
|
|
|
SettingsContentList()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-27 08:00:44 +00:00
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
|
fun BackgroundSelector() {
|
|
|
|
|
|
val context = LocalContext.current
|
|
|
|
|
|
val selectedBackground by BackgroundManager.selectedBackground.collectAsState()
|
|
|
|
|
|
|
|
|
|
|
|
val interactionSources = remember {
|
|
|
|
|
|
BackgroundManager.backgrounds.map { MutableInteractionSource() }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Column(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.fillMaxWidth()
|
|
|
|
|
|
.clip(RoundedCornerShape(16.dp))
|
|
|
|
|
|
.background(Color(0x33121212))
|
|
|
|
|
|
.padding(16.dp),
|
|
|
|
|
|
verticalArrangement = Arrangement.spacedBy(12.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = "背景壁纸",
|
|
|
|
|
|
fontSize = 16.sp,
|
|
|
|
|
|
fontWeight = FontWeight.Medium,
|
|
|
|
|
|
color = Color.White
|
|
|
|
|
|
)
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = "选择您喜欢的背景图片",
|
|
|
|
|
|
fontSize = 13.sp,
|
|
|
|
|
|
color = Color(0xFF9AA0A6)
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
Spacer(modifier = Modifier.height(4.dp))
|
|
|
|
|
|
|
|
|
|
|
|
Row(
|
|
|
|
|
|
modifier = Modifier.fillMaxWidth(),
|
|
|
|
|
|
horizontalArrangement = Arrangement.spacedBy(12.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
BackgroundManager.backgrounds.forEachIndexed { index, bg ->
|
|
|
|
|
|
val isSelected = selectedBackground == bg.id
|
|
|
|
|
|
|
|
|
|
|
|
Column(
|
|
|
|
|
|
modifier = Modifier.weight(1f),
|
|
|
|
|
|
horizontalAlignment = Alignment.CenterHorizontally,
|
|
|
|
|
|
verticalArrangement = Arrangement.spacedBy(6.dp)
|
|
|
|
|
|
) {
|
|
|
|
|
|
Box(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.fillMaxWidth()
|
|
|
|
|
|
.height(56.dp)
|
|
|
|
|
|
.clip(RoundedCornerShape(10.dp))
|
|
|
|
|
|
.then(
|
|
|
|
|
|
if (isSelected) {
|
|
|
|
|
|
Modifier.border(
|
|
|
|
|
|
width = 2.dp,
|
|
|
|
|
|
brush = Brush.linearGradient(
|
|
|
|
|
|
listOf(Color(0xFFA9F0FF), Color(0xFFB89CFF))
|
|
|
|
|
|
),
|
|
|
|
|
|
shape = RoundedCornerShape(10.dp)
|
|
|
|
|
|
)
|
|
|
|
|
|
} else Modifier
|
|
|
|
|
|
)
|
|
|
|
|
|
.clickable(
|
|
|
|
|
|
indication = null,
|
|
|
|
|
|
interactionSource = interactionSources[index]
|
|
|
|
|
|
) {
|
|
|
|
|
|
BackgroundManager.setBackground(context, bg.id)
|
|
|
|
|
|
}
|
|
|
|
|
|
) {
|
|
|
|
|
|
Image(
|
|
|
|
|
|
painter = painterResource(id = bg.thumbId),
|
|
|
|
|
|
contentDescription = bg.name,
|
|
|
|
|
|
contentScale = ContentScale.Crop,
|
|
|
|
|
|
modifier = Modifier.fillMaxSize()
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if (isSelected) {
|
|
|
|
|
|
Box(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.fillMaxSize()
|
|
|
|
|
|
.background(Color.Black.copy(alpha = 0.3f)),
|
|
|
|
|
|
contentAlignment = Alignment.Center
|
|
|
|
|
|
) {
|
|
|
|
|
|
Box(
|
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
|
.size(20.dp)
|
|
|
|
|
|
.clip(RoundedCornerShape(10.dp))
|
|
|
|
|
|
.background(
|
|
|
|
|
|
Brush.linearGradient(
|
|
|
|
|
|
listOf(Color(0xFFA9F0FF), Color(0xFFB89CFF))
|
|
|
|
|
|
)
|
|
|
|
|
|
),
|
|
|
|
|
|
contentAlignment = Alignment.Center
|
|
|
|
|
|
) {
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = "✓",
|
|
|
|
|
|
color = Color.White,
|
|
|
|
|
|
fontSize = 12.sp,
|
|
|
|
|
|
fontWeight = FontWeight.Bold
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Text(
|
|
|
|
|
|
text = bg.name,
|
|
|
|
|
|
fontSize = 11.sp,
|
|
|
|
|
|
fontWeight = if (isSelected) FontWeight.Medium else FontWeight.Normal,
|
|
|
|
|
|
color = if (isSelected) Color(0xFFA9F0FF) else Color(0xFF9AA0A6)
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|