-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: recycling and re-rendering issues
- Loading branch information
Showing
5 changed files
with
191 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
diff --git a/node_modules/@shopify/flash-list/dist/MasonryFlashList.d.ts b/node_modules/@shopify/flash-list/dist/MasonryFlashList.d.ts | ||
index b328c8c..e67ce4b 100644 | ||
--- a/node_modules/@shopify/flash-list/dist/MasonryFlashList.d.ts | ||
+++ b/node_modules/@shopify/flash-list/dist/MasonryFlashList.d.ts | ||
@@ -40,6 +40,7 @@ export interface MasonryFlashListRef<T> { | ||
scrollToOffset: FlashList<T>["scrollToOffset"]; | ||
scrollToEnd: FlashList<T>["scrollToEnd"]; | ||
getScrollableNode: FlashList<T>["getScrollableNode"]; | ||
+ recyclerlistview_unsafe: FlashList<T>["recyclerlistview_unsafe"]; | ||
} | ||
/** | ||
* FlashList variant that enables rendering of masonry layouts. | ||
diff --git a/node_modules/@shopify/flash-list/src/MasonryFlashList.tsx b/node_modules/@shopify/flash-list/src/MasonryFlashList.tsx | ||
index 957cd5b..3447834 100644 | ||
--- a/node_modules/@shopify/flash-list/src/MasonryFlashList.tsx | ||
+++ b/node_modules/@shopify/flash-list/src/MasonryFlashList.tsx | ||
@@ -80,6 +80,7 @@ export interface MasonryFlashListRef<T> { | ||
scrollToOffset: FlashList<T>["scrollToOffset"]; | ||
scrollToEnd: FlashList<T>["scrollToEnd"]; | ||
getScrollableNode: FlashList<T>["getScrollableNode"]; | ||
+ recyclerlistview_unsafe: FlashList<T>["recyclerlistview_unsafe"]; | ||
} | ||
|
||
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.