Попробовал сделать экран входа с помощью курсора

This commit is contained in:
2025-12-19 00:57:58 +03:00
parent 58fe248a2c
commit 6ddd6f082b
14 changed files with 450 additions and 25 deletions

View File

@@ -27,18 +27,20 @@ class MainActivity : ComponentActivity() {
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
BottomNavigationBar(
currentRoute = currentRoute,
onNavigate = { route ->
navController.navigate(route) {
popUpTo(navController.graph.startDestinationId) {
saveState = true
if (currentRoute != "login") {
BottomNavigationBar(
currentRoute = currentRoute,
onNavigate = { route ->
navController.navigate(route) {
popUpTo(navController.graph.startDestinationId) {
saveState = true
}
launchSingleTop = true
restoreState = true
}
launchSingleTop = true
restoreState = true
}
}
)
)
}
}
) { innerPadding ->
NewPlanetNavigation(