358 lines
10 KiB
Kotlin
358 lines
10 KiB
Kotlin
|
|
package com.example.smarthome.ui
|
|||
|
|
|
|||
|
|
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
|
|||
|
|
import androidx.compose.ui.text.font.FontWeight
|
|||
|
|
import androidx.compose.ui.unit.dp
|
|||
|
|
import androidx.compose.ui.unit.sp
|
|||
|
|
|
|||
|
|
@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 = "显示设置") {
|
|||
|
|
var darkMode by remember { mutableStateOf(true) }
|
|||
|
|
SettingsSwitchItem(
|
|||
|
|
title = "深色模式",
|
|||
|
|
subtitle = "使用深色主题",
|
|||
|
|
checked = darkMode,
|
|||
|
|
onCheckedChange = { darkMode = it }
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
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))
|
|||
|
|
.background(Color(0x22FFFFFF))
|
|||
|
|
.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))
|
|||
|
|
.background(Color(0x26FFFFFF))
|
|||
|
|
.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))
|
|||
|
|
.background(Color(0x11FFFFFF))
|
|||
|
|
.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))
|
|||
|
|
.background(Color(0x11FFFFFF))
|
|||
|
|
.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)
|
|||
|
|
.clip(RoundedCornerShape(24.dp))
|
|||
|
|
.background(
|
|||
|
|
Brush.linearGradient(
|
|||
|
|
listOf(Color(0xFFFF6B6B), Color(0xFFFF5252))
|
|||
|
|
)
|
|||
|
|
)
|
|||
|
|
.shadow(8.dp, RoundedCornerShape(24.dp), clip = false)
|
|||
|
|
.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()
|
|||
|
|
}
|
|||
|
|
}
|