diff --git a/manager/src/main/java/org/lsposed/npatch/ui/page/BottomBarDestination.kt b/manager/src/main/java/org/lsposed/npatch/ui/page/BottomBarDestination.kt index f16e17a..f33635d 100644 --- a/manager/src/main/java/org/lsposed/npatch/ui/page/BottomBarDestination.kt +++ b/manager/src/main/java/org/lsposed/npatch/ui/page/BottomBarDestination.kt @@ -18,6 +18,6 @@ enum class BottomBarDestination( Home(HomeScreenDestination, R.string.screen_home, Icons.Filled.Home, Icons.Outlined.Home), Manage(ManageScreenDestination, R.string.screen_manage, Icons.Filled.Dashboard, Icons.Outlined.Dashboard), Repo(RepoScreenDestination, R.string.screen_repo, Icons.Filled.GetApp, Icons.Outlined.GetApp), - Logs(LogsScreenDestination, R.string.screen_logs, Icons.Filled.Assignment, Icons.Outlined.Assignment), + // Logs(LogsScreenDestination, R.string.screen_logs, Icons.Filled.Assignment, Icons.Outlined.Assignment), Settings(SettingsScreenDestination, R.string.screen_settings, Icons.Filled.Settings, Icons.Outlined.Settings); } diff --git a/manager/src/main/java/org/lsposed/npatch/ui/page/LogsScreen.kt b/manager/src/main/java/org/lsposed/npatch/ui/page/LogsScreen.kt index 40abbde..ba63dc0 100644 --- a/manager/src/main/java/org/lsposed/npatch/ui/page/LogsScreen.kt +++ b/manager/src/main/java/org/lsposed/npatch/ui/page/LogsScreen.kt @@ -12,19 +12,19 @@ import androidx.compose.ui.text.style.TextAlign import com.ramcosta.composedestinations.annotation.Destination import org.lsposed.npatch.ui.component.CenterTopBar -@OptIn(ExperimentalMaterial3Api::class) -@Destination -@Composable -fun LogsScreen() { - Scaffold( - topBar = { CenterTopBar(stringResource(BottomBarDestination.Logs.label)) } - ) { innerPadding -> - Text( - modifier = Modifier - .padding(innerPadding) - .fillMaxSize(), - text = "This page is not yet implemented", - textAlign = TextAlign.Center - ) - } -} +// @OptIn(ExperimentalMaterial3Api::class) +// @Destination +// @Composable +// fun LogsScreen() { +// Scaffold( +// topBar = { CenterTopBar(stringResource(BottomBarDestination.Logs.label)) } +// ) { innerPadding -> +// Text( +// modifier = Modifier +// .padding(innerPadding) +// .fillMaxSize(), +// text = "This page is not yet implemented", +// textAlign = TextAlign.Center +// ) +// } +// }