You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bottomsheetdialog-compose/src/main/kotlin/com/holix/android/bottomsheetdialog/compose/BottomSheetDialog.kt
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -51,11 +51,12 @@ class BottomSheetDialogProperties constructor(
51
51
52
52
overridefunequals(other:Any?): Boolean {
53
53
if (this=== other) returntrue
54
-
if (other !isDialogProperties) returnfalse
54
+
if (other !isBottomSheetDialogProperties) returnfalse
55
55
56
56
if (dismissOnBackPress != other.dismissOnBackPress) returnfalse
57
57
if (dismissOnClickOutside != other.dismissOnClickOutside) returnfalse
58
58
if (securePolicy != other.securePolicy) returnfalse
59
+
if (navigationBarColor != other.navigationBarColor) returnfalse
59
60
60
61
returntrue
61
62
}
@@ -64,6 +65,7 @@ class BottomSheetDialogProperties constructor(
64
65
var result = dismissOnBackPress.hashCode()
65
66
result =31* result + dismissOnClickOutside.hashCode()
66
67
result =31* result + securePolicy.hashCode()
68
+
result =31* result + navigationBarColor.hashCode()
0 commit comments