mirror of
https://github.com/status-im/status-react.git
synced 2025-01-22 00:41:07 +00:00
f640eb8c8f
* feat: drag to dismiss lightbox
11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
import { useDerivedValue } from 'react-native-reanimated';
|
|
|
|
export function infoLayout(input, isTop) {
|
|
return useDerivedValue(
|
|
function () {
|
|
'worklet'
|
|
return isTop ? input.value : -input.value
|
|
}
|
|
);
|
|
}
|