UNPKG

154 BPlain TextView Raw
1import { AppState } from 'react-native';
2
3const isAppInForeground = () => {
4 return AppState.currentState === 'active';
5};
6
7export { isAppInForeground };