@react-navigation/drawer
Version:
Integration for the drawer component from react-native-drawer-layout
10 lines (9 loc) • 396 B
JavaScript
export function getDrawerStatusFromState(state) {
if (state.history == null) {
throw new Error("Couldn't find the drawer status in the state object. Is it a valid state object of drawer navigator?");
}
const entry = state.history.find(it => it.type === 'drawer');
return entry?.status ?? state.default ?? 'closed';
}
//# sourceMappingURL=getDrawerStatusFromState.js.map
;