Skeleton-Bones icon indicating copy to clipboard operation
Skeleton-Bones copied to clipboard

Cannot disable Skeleton effect

Open phongbm opened this issue 1 year ago • 0 comments

This is my code

skeletonBuilder = SkeletonDrawable.create(view as ViewGroup)
                .builder()
                .setEnabled(true)
                .setAllowSavedState(true)
                .withShimmerBuilder {
                    setColor(MutableColor.fromColor(colorGray300))
                    setCount(3)
                }

hide effect

skeletonBuilder?.setEnabled(false)

Today, I upgrade version from 1.4.1 to 1.4.5 and it doesn't working. How to disable the effect?

phongbm avatar May 30 '23 02:05 phongbm