调整样式

This commit is contained in:
2024-07-16 10:48:45 +08:00
parent a3fba7d7e9
commit 0b3455c7c4
7 changed files with 65 additions and 14 deletions

View File

@@ -135,25 +135,31 @@ fun NavigationController(navController: NavHostController) {
}
}
composable(route = "MyMessage") {
NotificationsScreen()
}
composable(route = "Comments") {
CommentsScreen()
}
composable(route = "Likes") {
LikePage()
}
composable(route = "Followers") {
Box(
modifier = Modifier.padding(bottom = navigationBarHeight)
) {
NotificationsScreen()
}
}
composable(route = "Comments") {
CommentsScreen()
}
composable(route = "Likes") {
LikePage()
}
composable(route = "Followers") {
FollowerPage()
FollowerPage()
}
}
composable(route = "NewPost") {
NewPostScreen()
NewPostScreen()
}
composable(route = "EditModification") {