diff --git a/README.md b/README.md
index dfe69a5..cdb7f56 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# VirtualizedList Lua
-### High-performance virtualized scrolling lists for [react-lua](https://github.com/jsdotlua/react-lua).
+### High-performance scrolling lists ported from React Native for [react-lua](https://github.com/jsdotlua/react-lua).
@@ -25,8 +25,9 @@ A collection of virtual list components, supporting the most handy features:
- Scroll loading
- ScrollToIndex support
- Multiple column support
+- Animation suppot
-Virtualization massively improves memory consumption and performance of large lists by maintaining a finite render window of active items and replacing all items outside of the render window with appropriately sized blank space. The window adapts to scrolling behavior, and items are rendered incrementally with low-pri (after any running interactions) if they are far from the visible area, or with hi-pri otherwise to minimize the potential of seeing blank space.
+Virtualization massively improves memory consumption and performance of large lists by maintaining a finite render window of active items and replacing all items outside of the render window with appropriately sized blank space. The window adapts to scrolling behavior, and items are rendered incrementally with low-priority (after any running interaction responses) if they are far from the visible area, or with high-priority otherwise to minimize the potential of seeing blank space.
## Caveats
@@ -105,8 +106,14 @@ root:render(ReactRoblox.createPortal(e(App), Players.LocalPlayer.PlayerGui))
## Documentation
-More information on the provided list components can be found at:
+These components are directly ported from React Native 0.68, so most documentation and articles should apply (modulo Lua syntax). More information on the provided list components can be found at:
- `VirtualizedList` - https://reactnative.dev/docs/virtualizedlist
- `FlatList` - https://reactnative.dev/docs/flatlist
- `SectionList` - https://reactnative.dev/docs/sectionlist
+
+## TODO
+
+- Add unit tests from upstream React Native
+- Use `darklua` bundler to allow more files to easily run outside of Roblox
+- Add performance benchmarks