Dương Tiến Vinh

Results 5 comments of Dương Tiến Vinh

That's a great approach, thank you ❤️ P.S. Sorry for the late reply 😅

**Yes**, you can track it with the `onCreateTextNode` function. This function is called when the typewriter is about to add some nodes to the DOM. > **Note**: This function has...

Sorry for the _late_ reply, with the example in the [doc](https://github.com/tameemsafi/typewriterjs?tab=readme-ov-file#react): ```js { typewriter .typeString('Hello World!') .callFunction(() => { console.log('String typed out!'); }) .pauseFor(2500) .deleteAll() .callFunction(() => { console.log('All strings...

To fix this, you may add `ScrollView` from [**`react-native-gesture-handler`**](https://docs.swmansion.com/react-native-gesture-handler/docs/) under the `SelectContent` component. Therefore, you don't have to use `useRef` from [Select examples](https://github.com/mrzachnugent/react-native-reusables/blob/main/apps/showcase/app/select.tsx) or modify the original `Select` component. -...

My workaround is adding the `key` prop to the `Calendar` component (or components that accept `theme` prop like `AgendaList` or `CalendarProvider`) to trigger a re-render of the whole component. Please...