bjb преди 3 месеца
родител
ревизия
2f1860ba77

+ 1 - 1
.idea/deploymentTargetSelector.xml

@@ -4,7 +4,7 @@
     <selectionStates>
       <SelectionState runConfigName="app">
         <option name="selectionMode" value="DROPDOWN" />
-        <DropdownSelection timestamp="2026-01-23T01:34:05.292277800Z">
+        <DropdownSelection timestamp="2026-01-26T05:28:14.075888900Z">
           <Target type="DEFAULT_BOOT">
             <handle>
               <DeviceId pluginId="LocalEmulator" identifier="path=C:\Users\ISCS\.android\avd\Resizable.avd" />

+ 4 - 3
app/src/main/java/com/iscs/bozzys/ui/pages/message/PageMessage.kt

@@ -262,12 +262,13 @@ private fun MessageListItemContent(vm: VMMessage, msg: Message) {
                 .padding(16.dp)
         ) {
             Icon(
-                painterResource(R.drawable.delete_all), contentDescription = null,
+                painterResource(R.drawable.bell), contentDescription = null,
                 modifier = Modifier
                     .size(40.dp)
                     .clip(RoundedCornerShape(50))
-                    .background(Color(0xFF1E90FF))
-                    .padding(12.dp)
+                    .background(MaterialTheme.colorScheme.primary)
+                    .padding(12.dp),
+                tint = Color.White
             )
             Column(
                 Modifier

+ 1 - 1
app/src/main/java/com/iscs/bozzys/ui/pages/vm/VMMessage.kt

@@ -46,7 +46,7 @@ class VMMessage : VMBase() {
                     newList += msg
                 }
                 _state.value = _state.value.copy(messages = newList)
-                delay(1000)
+                delay(500)
                 // 查找消息个数是否和后台返回的消息个数一致
                 val noMore = newList.count { m -> !m.isTitle } == dataCount
                 _state.value = _state.value.copy(page = _state.value.page.copy(isRefresh = false, noMore = noMore))

+ 0 - 1
app/src/main/res/layout/timer_picker.xml

@@ -12,7 +12,6 @@
         android:layout_height="wrap_content"
         android:layout_marginStart="16dp"
         app:layout_constraintBottom_toBottomOf="parent"
-        app:layout_constraintStart_toEndOf="@+id/np_datetime_day"
         app:layout_constraintTop_toTopOf="parent"
         app:np_dividerColor="#E5E5E5"
         app:np_dividerThickness="0.6dp"