google-pay / compose-pay-button

An Android library that provides a Jetpack Compose wrapper on top of the Google Pay Button API.
Apache License 2.0
29 stars 2 forks source link

add support for disabling the pay button #8

Closed dmengelt closed 11 months ago

dmengelt commented 11 months ago

Adds a new enabled property on the button:

PayButton(
  onClick = onClick,
  allowedPaymentMethods = allowedPaymentMethods,
  enabled = false
)

If enabled is set to false the buttons click listener gets removed and the button is greyed out:

image
dmengelt commented 11 months ago

Fixes #5