python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Vue composable loses reactivity
I'm trying to pass reactive data/a ref (limit) into a composable (useItemsShowing()).
Whenever I update limit by pressing the button I want the composable to re-run and give me an updated return value...
Felix
Votes: 0
Answers: 1
Toggle div in parent component when button is clicked from child component using Composable
I have 3 pages:
spinner.js - composable. Function to toggle loading spinner
App.vue - parent component
Test.vue - child component
What I need to do is when I click the button from Test.vue, the App....
rhemmuuu
Votes: 0
Answers: 1
Composable does not remember input when changing configuration in test
I'm writing instrumented tests for a Jetpack Compose component. My composable uses rememberSaveable to remember between configuration changes (activity restarts):
@Composable
fun AddUserScreen() {
...
Mahozad
Votes: 0
Answers: 0
Why are transparent composables in Jetpack Compose not completely transparent?
In a project I am creating, I want to have a transparent floating button button in one of my screens.
The button should be of a color RGB(126,26,71), with 75% alpha channel.
But, when I create said bu...
PetrHoracek
Votes: 0
Answers: 1