Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 320 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 320 Bytes

progress_button

The custom button for indicate progress in Android.

sample

Usage

if (isLoading) {
    binding.button.showProgress {
        textResourceId = R.string.submitting
    }
} else {
    binding.button.hideProgress {
        textResourceId = R.string.submit
    }
}