You can push a route from an activity (or fragment) usingNavigator.of(this).push(Routes.Home)or by its pathNavigator.of(this).push("/home/")You can also change the route from anywhere (eg: an android ViewModel) using Navigator.current()Navigator.current()?.push(Routes.Home)...
class MainActivity : AppCompatActivity() { private lateinit var appBarConfiguration: AppBarConfiguration private lateinit var binding: ActivityMainBinding class MainActivity : AppCompatActivity() { private lateinit var appBarConfiguration: AppBarConfiguration private lateinit var binding: ActivityMainBinding ...
Picked photos URIs are returned via callbacksonImagesPickedfunction, so you just need to implementPhotoPickerFragment.Callbackinterface in your activity or fragment Themes To customize picker you can use one ofbuilt-in themesor inherit it rewritingattributesyou want (seeexample) ...