Created
October 25, 2022 21:59
-
-
Save ahmmedrejowan/9ba49ab21ebad246972393e4e1a7d649 to your computer and use it in GitHub Desktop.
Basic.Java
This file contains hidden or 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
new CuteDialog.withIcon(this) | |
.setIcon(R.mipmap.ic_launcher) | |
.setTitle("Simple Dialog") | |
.setDescription("This is a simple Dialog") | |
.setPositiveButtonText("Okay", v2 -> { | |
}) | |
.setNegativeButtonText("Cancel", v2 -> { | |
}) | |
.show(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment