diff --git a/docs/optimizing-flatlist-configuration.md b/docs/optimizing-flatlist-configuration.md index b7f2bb734d2..3933d4e0697 100644 --- a/docs/optimizing-flatlist-configuration.md +++ b/docs/optimizing-flatlist-configuration.md @@ -23,11 +23,11 @@ Here are a list of props that can help to improve `FlatList` performance: ### removeClippedSubviews -| Type | Default | -| ------- | ------- | -| Boolean | False | +| Type | Default | +| ------- | ------------------------------- | +| Boolean | True (Android)
False (iOS) | -If `true`, views that are outside of the viewport are detached from the native view hierarchy. +If `true`, views that are outside of the viewport are automatically detached from the native view hierarchy. **Pros:** This reduces time spent on the main thread, and thus reduces the risk of dropped frames, by excluding views outside of the viewport from the native rendering and drawing traversals.