From 10e37223ff214ee43ac5791eb135eab8b4cb61ae Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Mon, 15 Apr 2024 14:30:06 -0300 Subject: [PATCH] Allow text as animated prop on AudioPlayer --- app/containers/AudioPlayer/Seek.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/containers/AudioPlayer/Seek.tsx b/app/containers/AudioPlayer/Seek.tsx index a63dd32ca..dfba7c866 100644 --- a/app/containers/AudioPlayer/Seek.tsx +++ b/app/containers/AudioPlayer/Seek.tsx @@ -15,6 +15,7 @@ import styles from './styles'; import { useTheme } from '../../theme'; import { SEEK_HIT_SLOP, THUMB_SEEK_SIZE, ACTIVE_OFFSET_X, DEFAULT_TIME_LABEL } from './constants'; +Animated.addWhitelistedNativeProps({ text: true }); const AnimatedTextInput = Animated.createAnimatedComponent(TextInput); interface ISeek {