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: pluto-plugins/plugins/layout-inspector/lib/src/main/java/com/pluto/plugins/layoutinspector/internal/attributes/ViewAttrFragment.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ internal class ViewAttrFragment : BottomSheetDialogFragment() {
74
74
super.onViewCreated(view, savedInstanceState)
75
75
dialog?.setOnShowListener {
76
76
val dialog = it asBottomSheetDialog
77
-
val bottomSheet = dialog.findViewById<View>(com.google.android.material.R.id.design_bottom_sheet)
77
+
val bottomSheet = dialog.findViewById<View>(R.id.design_bottom_sheet)
Copy file name to clipboardExpand all lines: pluto-plugins/plugins/rooms-database/lib/src/main/java/com/pluto/plugins/rooms/db/internal/ui/ActionsFragment.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ internal class ActionsFragment : BottomSheetDialogFragment() {
31
31
super.onViewCreated(view, savedInstanceState)
32
32
dialog?.setOnShowListener {
33
33
val dialog = it asBottomSheetDialog
34
-
val bottomSheet = dialog.findViewById<View>(com.google.android.material.R.id.design_bottom_sheet)
34
+
val bottomSheet = dialog.findViewById<View>(R.id.design_bottom_sheet)
Copy file name to clipboardExpand all lines: pluto-plugins/plugins/rooms-database/lib/src/main/java/com/pluto/plugins/rooms/db/internal/ui/ColumnDetailsFragment.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ internal class ColumnDetailsFragment : BottomSheetDialogFragment() {
40
40
super.onViewCreated(view, savedInstanceState)
41
41
dialog?.setOnShowListener {
42
42
val dialog = it asBottomSheetDialog
43
-
val bottomSheet = dialog.findViewById<View>(com.google.android.material.R.id.design_bottom_sheet)
43
+
val bottomSheet = dialog.findViewById<View>(R.id.design_bottom_sheet)
Copy file name to clipboardExpand all lines: pluto-plugins/plugins/rooms-database/lib/src/main/java/com/pluto/plugins/rooms/db/internal/ui/EditFragment.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ internal class EditFragment : BottomSheetDialogFragment() {
83
83
super.onViewCreated(view, savedInstanceState)
84
84
dialog?.setOnShowListener {
85
85
val dialog = it asBottomSheetDialog
86
-
val bottomSheet = dialog.findViewById<View>(com.google.android.material.R.id.design_bottom_sheet)
86
+
val bottomSheet = dialog.findViewById<View>(R.id.design_bottom_sheet)
Copy file name to clipboardExpand all lines: pluto-plugins/plugins/rooms-database/lib/src/main/java/com/pluto/plugins/rooms/db/internal/ui/TableSchemaFragment.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ internal class TableSchemaFragment : BottomSheetDialogFragment() {
37
37
super.onViewCreated(view, savedInstanceState)
38
38
dialog?.setOnShowListener {
39
39
val dialog = it asBottomSheetDialog
40
-
val bottomSheet = dialog.findViewById<View>(com.google.android.material.R.id.design_bottom_sheet)
40
+
val bottomSheet = dialog.findViewById<View>(R.id.design_bottom_sheet)
Copy file name to clipboardExpand all lines: pluto-plugins/plugins/rooms-database/lib/src/main/java/com/pluto/plugins/rooms/db/internal/ui/filter/FilterFragment.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ internal class FilterFragment : BottomSheetDialogFragment() {
48
48
super.onViewCreated(view, savedInstanceState)
49
49
dialog?.setOnShowListener {
50
50
val dialog = it asBottomSheetDialog
51
-
val bottomSheet = dialog.findViewById<View>(com.google.android.material.R.id.design_bottom_sheet)
51
+
val bottomSheet = dialog.findViewById<View>(R.id.design_bottom_sheet)
0 commit comments