Skip to content

Version 1.1

Compare
Choose a tag to compare
@javiersantos javiersantos released this 16 Jun 10:40
· 44 commits to master since this release
  • The builder has been changed by this one:
new BottomDialog.Builder(this)
        .setTitle("Awesome!")
        .setContent("What can we improve? Your feedback is always welcome.")
        .show();
BottomDialog bottomDialog = new BottomDialog.Builder(this)
        .setTitle("Awesome!")
        .setContent("What can we improve? Your feedback is always welcome.")
        .build();
...
bottomDialog.show();
  • Added dismiss() method.