Created
February 5, 2020 07:29
-
-
Save LutfiTekin/7296342ed8db9b38016cc9a7e2c14908 to your computer and use it in GitHub Desktop.
DateRangerPicker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val builder = MaterialDatePicker.Builder.dateRangePicker() | |
val picker = builder.setTitleText("test").build() | |
picker.addOnPositiveButtonClickListener { | |
"picked $it" logWith "Log" | |
} | |
picker.show(supportFragmentManager,null) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment