1、添加备案信息
This commit is contained in:
shenzuqiang 2026-03-23 15:46:52 +08:00
parent b70f553c2b
commit cd7f326b55
1 changed files with 20 additions and 0 deletions

View File

@ -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)
)
}
}
}
}