Android Bottom Sheet (Kotlin)
DESCRIPTION This tutorial is about: How to create bottom sheet using Fragment How to handle bottom sheet item/option clicks VIDEO SOURCE CODE Step 1: Create a new Project or open new project Step 2: Add following library in build.gradle(Module:app) implementation 'com.android.support:design:27.1.1' Step 3: Create a fragment name it as "BottomSheetEx". Step 4: Code build.gradle(Module:app) apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 27 defaultConfig { applicationId "com.blogspot.devofandroid.bottomsheet_kotlin" minSdkVersion 16 targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { relea