Skip to content

Commit

Permalink
fix: BottomSheetNavigator params order
Browse files Browse the repository at this point in the history
  • Loading branch information
adrielcafe committed Sep 17, 2021
1 parent 2e18ac3 commit a3da82c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
plugin-android = "7.0.2"
plugin-ktlint = "10.1.0"
plugin-maven = "0.17.0"
plugin-maven = "0.18.0"

kotlin = "1.5.30"
kodein = "7.8.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ public fun BottomSheetNavigator(
@OptIn(ExperimentalMaterialApi::class)
public class BottomSheetNavigator internal constructor(
navigator: Navigator,
public val stateHolder: SaveableStateHolder = navigator.stateHolder,
private val sheetState: ModalBottomSheetState,
private val coroutineScope: CoroutineScope
private val coroutineScope: CoroutineScope,
public val stateHolder: SaveableStateHolder = navigator.stateHolder
) : Stack<Screen> by navigator {

public val isVisible: Boolean
Expand Down

0 comments on commit a3da82c

Please sign in to comment.