Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Konfetti on click problem #320

Open
behu-kea opened this issue Dec 14, 2023 · 1 comment
Open

Konfetti on click problem #320

behu-kea opened this issue Dec 14, 2023 · 1 comment

Comments

@behu-kea
Copy link

behu-kea commented Dec 14, 2023

I really love this confetti animation, but am struggling to create konfetti on button click. I have it working when the activity is loaded. I am using Kotlin and Compose without xml. I have tried things like:

setContent {
    var position by remember {
        mutableStateOf(2f)
    }
    Button(onClick = {
        position = 5f;
    }) {
        Text(
            text = "Spray confetti" + position.toString())
    }

    KonfettiView(
        modifier = Modifier.fillMaxSize(),
        parties = listOf(Party(
            speed = 0f,
            maxSpeed = 30f,
            damping = 0.9f,
            spread = 360,
            colors = listOf(0xfce18a, 0xff726d, 0xf4306d, 0xb48def),
            emitter = Emitter(duration = 100, TimeUnit.MILLISECONDS).max(100),
            position = Position.Absolute(position, 1f)
        ))
    )
}

I have also tried

var party by remember { mutableStateOf<Party?>(null) }
            
Button(onClick = {
    party = Party (emitter = Emitter(duration = 5, TimeUnit.SECONDS).perSecond(30))
}) {
    Text(text = "Spray confetti!")
}

KonfettiView(
    modifier = Modifier.fillMaxSize(),
    parties = party?.let { listOf(it) } ?: emptyList()
)

Can someone please help?

@behu-kea behu-kea changed the title Konfetti on click Konfetti on click problem Dec 14, 2023
@behu-kea
Copy link
Author

Related: #305

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant