Jakub Piasecki

Results 99 comments of Jakub Piasecki

I would also really appreciate it if you could double-check if everything works in RTL layouts. I was sure that `Layout.Alignment.ALIGN_NORMAL` and `Layout.Alignment.ALIGN_OPPOSITE` would work without any additional logic, but...

I've pushed some changes and here is what it look like: The code I've tested ```jsx import { SafeAreaView, ScrollView, Text, View } from "react-native"; function InlineViewArabic(props) { return (...

I updated it to set text direction on the layout based on the heuristic, and then changed the logic around alignment and gravity since Android seems to be matching `Gravity.START`...

Oh, I believe I need to comment on the issue for you to be able to assign me @cortinico.

I don't think that disabling the recycling for a particular view type is the solution, especially when the view in question is `RCTViewComponentView`. > if users add some custom logic...

> This is interesting. So Calling setViewControllers (which takes an array of view controllers I suppose) will cause the UIPageViewController to change autoresizingMask on a view? It looks this way...

The problem here is that it's not a custom component inheriting after it but `RCTViewComponentView` itself, so I can't do it easily.

@cipolleschi Here it is: https://github.com/j-piasecki/autoresizingmask-repro. Just add a breakpoint inside the `setAutoresizingMask` of `RCTViewComponentView` and press the button.

@cipolleschi Sorry for the late reply, I've missed the notification. > One thing I noticed is that, yes, the prepareForRecycle is invoked but you are not getting a recycled view....

> The root cause it is not the Fabric view recycling: it is how UIKit works! I get your point but on the other hand, UIKit doesn’t recycle views so...