We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f9ee4f commit ea6f52eCopy full SHA for ea6f52e
1 file changed
app/src/main/java/com/runnect/runnect/presentation/draw/DrawActivity.kt
@@ -313,14 +313,15 @@ class DrawActivity :
313
Timber.tag("EditTextValue").d("${viewModel.departureName.value}")
314
}
315
316
+ val bottomSheetDialog = BottomSheetDialog(this)
317
+ bottomSheetDialog.setContentView(bottomSheetView)
318
+
319
btnCreateCourse.setOnClickListener {
320
hideKeyboard(etCourseName)
321
+ bottomSheetDialog.dismiss()
322
createMbr()
323
324
- val bottomSheetDialog = BottomSheetDialog(this)
- bottomSheetDialog.setContentView(bottomSheetView)
-
325
return bottomSheetDialog
326
327
0 commit comments