Files
streamyfin_mirror/utils/atoms/orientation.ts
Fredrik Burmester f24b5612b2 chore
2024-09-03 18:53:48 +03:00

7 lines
189 B
TypeScript

import * as ScreenOrientation from "expo-screen-orientation";
import { atom } from "jotai";
export const orientationAtom = atom<number>(
ScreenOrientation.OrientationLock.PORTRAIT_UP
);