dokar3 / compose-sonner

An opinionated toast component for Compose Multiplatform.
https://dokar3.github.io/compose-sonner/
Apache License 2.0
199 stars 11 forks source link

Wrong parameter used in a example in readme. md | closeButton -> showCloseButton #73

Closed meAnurag closed 4 months ago

meAnurag commented 4 months ago

In readme.md

Under "Button" section

// Enable close buttons
Toaster(
    state = toaster,
    closeButton = true,
)

this should be

// Enable close buttons
Toaster(
    state = toaster,
    showCloseButton = true,
)

as closeButton does not accept a boolean while showCloseButton does.

dokar3 commented 4 months ago

Fixed, thanks for reminding this!