André Samuelsson

Results 8 comments of André Samuelsson

That didn't work for me. What worked for me was creating a `before.js` file only containing the `require('react-native').unstable_enableLogBox();` line. And then `import './before'`; at the very top of index.js And...

Not sure this is a conflict with the toast library. But I'm assuming you've put the `require('react-native').unstable_enableLogBox();` at the top of the index.js file? Didn't work for me either. What...

Doesn't work when scale is not defined... Unthurough testing on my part. Pushing fix soon.

This is how it was intended from the beginning right? Try to use the entry from specified screen configuration. Then try to find the entry in the default section. As...

Some answers to my own questions about user_data. The user_data parameter that you write to in the mosquitto_plugin_init is handed to the mosquitto_plugin_cleanup. While all the event callbacks have their...

Generating a struct from the C type makes sense but the struct will be defined differently depending on compiler flags for mosquitto (you can see the mosquitto struct that represents...

I looked into this a bit last week. Didn't seem to be an obvious way forward to make bindgen generate the type for us. There are a bunch of ifdefs...

You can accomplish this with the rotate modifier. E.g. ``` AlphaSlider( modifier = Modifier .fillMaxWidth() .height(30.dp) .rotate(90f), controller = controller ) ``` But it might be a little bit messy...