Skip to content

Instantly share code, notes, and snippets.

@ahmmedrejowan
Created October 25, 2022 21:59
Show Gist options
  • Save ahmmedrejowan/9ba49ab21ebad246972393e4e1a7d649 to your computer and use it in GitHub Desktop.
Save ahmmedrejowan/9ba49ab21ebad246972393e4e1a7d649 to your computer and use it in GitHub Desktop.
Basic.Java
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