UNPKG

@fto-consult/expo-ui

Version:

Bibliothèque de composants UI Expo,react-native

12 lines (10 loc) • 258 B
import * as React from "react"; let appBarRef = null; export {appBarRef}; export const createAppBarRef = ()=>{ const ref = React.useRef(null); React.useEffect(()=>{ appBarRef = ref.current; },[ref.current]); return ref; }