Skip to content

Commit

Permalink
chore: suppress lints
Browse files Browse the repository at this point in the history
  • Loading branch information
RyuNen344 committed Oct 27, 2024
1 parent fbcbd56 commit 98a92b0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,10 @@ class UUIDSerializer : KSerializer<UUID> {
inline fun <reified T : Routes> NavGraphBuilder.routes(
noinline enterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards EnterTransition?)? = null,
noinline exitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards ExitTransition?)? = null,
noinline popEnterTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards EnterTransition?)? = enterTransition,
noinline popExitTransition: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards ExitTransition?)? = exitTransition,
noinline popEnterTransition:
(AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards EnterTransition?)? = enterTransition,
noinline popExitTransition:
(AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards ExitTransition?)? = exitTransition,
noinline sizeTransform: (AnimatedContentTransitionScope<NavBackStackEntry>.() -> @JvmSuppressWildcards SizeTransform?)? = null,
noinline content: @Composable AnimatedContentScope.(NavBackStackEntry) -> Unit,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import androidx.hilt.navigation.compose.hiltViewModel
import io.github.ryunen344.suburi.ui.screen.Structure

@Composable
fun StructureScreen(
internal fun StructureScreen(
structure: Structure,
viewModel: StructureViewModel = hiltViewModel(),
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import androidx.compose.ui.tooling.preview.Preview
import io.github.ryunen344.suburi.ui.theme.SuburiTheme

@Composable
fun TopScreen(onClickUuid: () -> Unit, onClickStructure: () -> Unit) {
internal fun TopScreen(onClickUuid: () -> Unit, onClickStructure: () -> Unit) {
Scaffold(modifier = Modifier.fillMaxSize()) { innerPadding ->
Column(
modifier = Modifier.padding(innerPadding),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import androidx.hilt.navigation.compose.hiltViewModel
import io.github.ryunen344.suburi.ui.screen.WrappedUuid

@Composable
fun UuidScreen(
internal fun UuidScreen(
uuid: WrappedUuid,
viewModel: UuidViewModel = hiltViewModel(),
) {
Expand Down

0 comments on commit 98a92b0

Please sign in to comment.