Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddharth Agarwal authored and siddh1004 committed Nov 8, 2024
1 parent 530d5f6 commit c71718f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object BackdropManager {
isNavigationBarVisible: Boolean,
backdropLayout: ConstraintLayout,
endID: Int,
margin: Int
margin: Int,
) {
val transition: Transition = ChangeBounds()
transition.duration = changeBoundDuration
Expand All @@ -30,15 +30,15 @@ object BackdropManager {
ConstraintSet.BOTTOM,
R.id.navigationBar,
ConstraintSet.TOP,
0
0,
)
} else {
initSet.connect(
R.id.mainComponent,
ConstraintSet.BOTTOM,
ConstraintSet.PARENT_ID,
ConstraintSet.BOTTOM,
0
0,
)
}
initSet.applyTo(backdropLayout)
Expand Down

0 comments on commit c71718f

Please sign in to comment.