From cd7f326b55b5237ba6f95cf38cc341c8af697f55 Mon Sep 17 00:00:00 2001 From: shenzuqiang Date: Mon, 23 Mar 2026 15:46:52 +0800 Subject: [PATCH] =?UTF-8?q?Dev=EF=BC=9A=201=E3=80=81=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=A4=87=E6=A1=88=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/img/rabbit/pages/screen/MineScreen.kt | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/app/src/main/java/com/img/rabbit/pages/screen/MineScreen.kt b/app/src/main/java/com/img/rabbit/pages/screen/MineScreen.kt index 0ae4129..2265f26 100644 --- a/app/src/main/java/com/img/rabbit/pages/screen/MineScreen.kt +++ b/app/src/main/java/com/img/rabbit/pages/screen/MineScreen.kt @@ -11,6 +11,7 @@ import androidx.compose.foundation.interaction.MutableInteractionSource import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.fillMaxHeight import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.height @@ -584,6 +585,25 @@ fun MineScreen( ) } } + + Box( + modifier = Modifier + .fillMaxHeight() + .padding(bottom = 68.dp) + .align(Alignment.CenterHorizontally) + ) { + Text( + text = "备案号:渝ICP备2025064932号-17A", + modifier = Modifier + .wrapContentSize() + .align(Alignment.BottomCenter), + fontWeight = FontWeight.Normal, + fontSize = 10.sp, + color = Color(0xFFAAAAAA) + ) + } + + } } }