Skip to content

5.1.0

Compare
Choose a tag to compare
@johannesh2 johannesh2 released this 08 Jun 07:08
· 18 commits to master since this release

Added delimiterLazyShow

You can set the delimiter to be shown only after the user starts typing the first character in the next character group. By default, the delimiter is shown immediately when the last character in the current group is typed.

new CustomStringBlockFormatter.Builder()
  .blocks(1,2)
  .delimiters("-")
  .delimiterLazyShow()
  .build();