Params
Type-safe parameter container for navigation.
Handles encoding/decoding automatically and provides type-safe access methods. Supports both simple types (String, Int, Boolean, etc.) and complex serializable objects.
Usage:
val params = Params.of(
"userId" to 123,
"documentUri" to contentUri,
"isActive" to true
)
// In screens
val userId = params.getInt("userId")
val uri = params.getString("documentUri")Content copied to clipboard