Step 2: Create a class and implement it with Argument interface. Variables in this class is your argument you wanna pass to other screen.
Example: I want to pass a number from MainScreen to Screen2. More variables means more arguments
package com.devcomentry.composenavigation.ui.screen
import com.devcomentry.lib.Argument
data class Screen2Argument(val number: Int = -1) : Argument
Step 3: Setup your navigation
Same as using navigation component, but at the composable function you can give ComposeScreen and Argument object, let me help you with the rest.
Support get argument from Bundle or SavedStateHandle. If Bundle or SavedStateHandle object doen't contains key argument will be default of Argument object