What’s missing?
Right now, there’s only an onPresent callback, which fires after the sheet is fully presented. It’d be super useful to have an onWillPresent callback that triggers when the animation starts.
Why is this useful?
- Helps sync UI updates or animations with the sheet appearing.
- Lets us prepare content before the sheet is fully visible.
How could it work?
Something like this:
<TrueSheet onWillPresent={() => console.log('Sheet is about to show!')} />
What’s missing?
Right now, there’s only an
onPresentcallback, which fires after the sheet is fully presented. It’d be super useful to have anonWillPresentcallback that triggers when the animation starts.Why is this useful?
How could it work?
Something like this: