mirror of
https://github.com/status-im/status-react.git
synced 2025-02-01 21:57:16 +00:00
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
|
||
|
}
|
||
|
);
|
||
|
}
|