bc3b464349
微信小程序 host-bridge 与 shell 文件改为职责命名 移动壳 host-bridge 与 shell 文件改为职责命名 更新原生壳结构门禁、微信 smoke 和宿主壳文档
14 lines
321 B
TypeScript
14 lines
321 B
TypeScript
import type { AppStateStatus } from 'react-native';
|
|
|
|
export function lifecyclePayloadFromAppState(state: AppStateStatus) {
|
|
return {
|
|
state: state === 'active'
|
|
? 'active'
|
|
: state === 'background'
|
|
? 'background'
|
|
: 'inactive',
|
|
focused: state === 'active',
|
|
nativeState: state,
|
|
};
|
|
}
|