> For the complete documentation index, see [llms.txt](https://the-sheet.gitbook.io/the-sheet-v2/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://the-sheet.gitbook.io/the-sheet-v2/roadmaps/01-the-village.md).

# Chapter 1: The Village

* [x] Support both Reanimated v3 and v4

***

* [x] Embedded stack navigator

***

* [x] Portal
  * Support for isolated host

***

* [x] Sheet stack provider
  * Actions: push, pop, remove
* [x] Sheet stack item
  * [ ] Behavior: push, switch, replace
  * [ ] z-index based on index in provider stack
  * [ ] Always open at 100%, no animation at all
  * [x] Ref API: Hide, present

***

* [x] Backdrop

***

* [x] Bottom sheet presenter
  * Open: Always slide from 0% to 100%
    * This solves the problem of bottom sheet dynamic sizing
  * Close: Always slide from 100% to 0%
    * Can signal sheet stack item to unmount when close animation finishes
* [x] Bottom sheet
  * [x] Free movement
  * [x] Snap points
  * [x] Float mode
    * Does not strictly require snap points
    * Can be dragged anywhere
    * Could go beyond max snap point if used with overdrag mode
  * [x] Overdrag mode
    * Need at least 1 snap point
    * Allow overdragging beyond the max snap point
  * [x] Ref API: snap to index, snap to position
* [x] Bottom sheet handle
  * Drag to move bottom sheet
  * Gesture to close bottom sheet
* [x] Bottom sheet view
  * The whole view handles pan gesture + animate bottom sheet position
* [x] Bottom sheet scroll view
  * Handle pan gesture for both scrolling and moving bottom sheet
  * Note: Use only one main bottom sheet scroll view per bottom sheet, which is responsible for syncing the pan gesture
    * You can still have nested normal scroll views inside this bottom sheet scroll view
* [x] Bottom sheet flat list
  * Similar to bottom sheet scroll view

***

* [x] Above bottom sheet view example
  * Uses BottomSheetPositionTracker (which calculates the visible height of bottom sheet, not taking into account the keyboard)

***

* [x] Keyboard expander
  * Get keyboard height and animate expanding/shrinking height gradually
  * Conditions to disable expanding
    * Maybe the input position is already higher than the keyboard height?


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://the-sheet.gitbook.io/the-sheet-v2/roadmaps/01-the-village.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
