Add fade-in animation to chat footer/composer (#10786)

This commit is contained in:
DS Boyce
2026-06-08 12:13:43 -07:00
committed by GitHub
parent 9b5fc19613
commit 4142eb4834
@@ -13,6 +13,7 @@ import {
KeyboardGestureArea,
} from 'react-native-keyboard-controller'
import Animated, {
FadeIn,
runOnJS,
type ScrollEvent,
type SharedValue,
@@ -615,6 +616,7 @@ export function MessagesList({
opened: 0,
}}>
{footer ?? (
<Animated.View entering={FadeIn.duration(200)}>
<ConversationFooter
convoState={convoState}
hasAcceptOverride={hasAcceptOverride}>
@@ -650,6 +652,7 @@ export function MessagesList({
)
}
</ConversationFooter>
</Animated.View>
)}
</KeyboardStickyView>
</KeyboardGestureArea>