Android Bottom Sheet (Kotlin)
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdfo-_LmST_bNci6i3R37uSS8Tz-2S4RhcsHR70Lqfpw2u-YjK0nVQ43X5TdxZlYqHdK8fmlp7HL7iqROq4NBti3X3Fj6pMJfnKhcqCdDGTcOyTXcEMMrhH_2fOVqzmLdsYml15I1z0Zq3/s320/Screenshot+%2528221%2529.png)
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" testInstrumentation...