Marcin Pabich

Results 17 comments of Marcin Pabich

Haven't tested this on any other device nor project. In my free time I'll try to build on another phone (stock Android 11) and with a new clean fresh project...

It's the first thing I noticed after discovering this program. I have also the PC on my right side and the strip has reverse color scheme comparing to the monitor....

Same here. I want to add some padding between my items, but it seems not to work properly. There is not spacing between elements.

I found a quick solution for this problem. This lines worked for me _(in Kotlin)_: `myHorizontalPicker.children.forEach { if (it is TextView) { val params: LinearLayout.LayoutParams = LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT) params.setMargins(15, 0,...

Actually I don't know. I saw that our iPhones updates some days ago and I can check if our test files are still there. But I don't know about this,...

The only _solution_ I found for now is to just relaunch Metro after this error happens. Pretty annoying but kinda works.

Still present today and we (as company) cannot decide to remove attrs, unfortunately. _VS Code 1.83.1 Mac Book Pro with M2, 14inch 2023, OS Ventura 13.4.1 vscode-styled-components v1.7.8_ ## Not...

I'm using RealmsDB and it's happening to me. My data is get like this: ``` const banks = useQuery(AppBank).sorted('order'); const bankAccounts = Array.from(banks); ``` This are my functions: ``` const...

I have the same problem. To solve it I downgraded to `6.0.7` and I typed as _optional_ my default properties. ```jsx const BlurImage = styled(Image).attrs({ source: blur, resizeMode: 'stretch' })`...

> ``` > diff --git a/node_modules/styled-components/native/dist/constructors/constructWithOptions.d.ts b/node_modules/styled-components/native/dist/constructors/constructWithOptions.d.ts > index d598842..4ffac9b 100644 > --- a/node_modules/styled-components/native/dist/constructors/constructWithOptions.d.ts > +++ b/node_modules/styled-components/native/dist/constructors/constructWithOptions.d.ts > @@ -9,9 +9,10 @@ type AttrsResult = T extends (...args: any) =>...