Colton Idle
Pablo
Loe
sorted queue
PriorityQueue
ArrayQueue
Stefan Oltmann
Vivek Modi
private const val NEAREST_RESULT_JSON = "nearestResultJson" @Composable internal fun NavigationGraph() { val navController = rememberNavController() NavHost(navController = navController, startDestination = ScreenRoute.Home.route) { composable(ScreenRoute.Home.route) { SetupMainActivityView { nearestResult -> val nearestResultJson = Uri.encode(Gson().toJson(nearestResult)) navController.navigate(ScreenRoute.Result.route + "/{$nearestResultJson}") } } composable( ScreenRoute.Result.route + "/{$NEAREST_RESULT_JSON}", arguments = listOf( navArgument(NEAREST_RESULT_JSON) { type = NearestResultParamType() } ) ) { backStackEntry -> ResultScreen(backStackEntry.arguments?.getParcelableArrayList(NEAREST_RESULT_JSON)) } } }
Lukellmann
HIDDEN
WARNING
ERROR
@Deprecated("w", level = DeprecationLevel.WARNING) val w = "w" @Deprecated("e", level = DeprecationLevel.ERROR) val e = "e" @Deprecated("h", level = DeprecationLevel.HIDDEN) val h = "h" println(@Suppress("DEPRECATION") w) println(@Suppress("DEPRECATION_ERROR") e) println(@Suppress("?? what goes here ??") h)
Joe Jensen
ModalBottomSheetLayout
AlertDialog
Vaibhav Jaiswal
florent
setContent
Activity.onTouchEvent()
A modern programming language that makes developers happier.