update:add modification list

This commit is contained in:
2024-07-15 11:25:56 +08:00
parent 204c6333c4
commit 9a9221fa4d
3 changed files with 148 additions and 2 deletions

View File

@@ -166,6 +166,13 @@ fun NavigationController(navController: NavHostController) {
NewPostScreen()
}
}
composable(route = "EditModification") {
Box(
modifier = Modifier.padding(top = 64.dp)
) {
EditModification()
}
}
}
}