You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* FlashList attempts to measure size of horizontal lists by drawing an extra list item in advance. This can sometimes cause issues when used with `initialScrollIndex` in lists
309
-
* with very little content. You might see some amount of over scroll. When set to true the list's rendered size needs to be deterministic (i.e., height and width greater than 0)
310
-
* as FlashList will skip rendering the extra item for measurement. Default value is `false`.
311
-
*/
312
-
disableHorizontalListHeightMeasurement?: boolean;
313
-
314
-
/**
315
-
* FlashList applies some fixes to layouts of its children which can conflict with custom `CellRendererComponent`
316
-
* implementations. You can disable this behavior by setting this to `true`.
317
-
* Recommendation: Set this to `true` while you apply special behavior to the `CellRendererComponent`. Once done set this to
318
-
* `false` again.
319
-
*/
320
-
disableAutoLayout?: boolean;
321
-
322
284
/**
323
285
* New arch only
324
286
* Maximum number of items in the recycle pool. These are the items that are cached in the recycle pool when they are scrolled off the screen.
0 commit comments