mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
import * as ScreenOrientation from "expo-screen-orientation";
|
|
import { Orientation } from "expo-screen-orientation";
|
|
import { atom } from "jotai";
|
|
|
|
export const orientationAtom = atom<number>(
|
|
ScreenOrientation.OrientationLock.PORTRAIT_UP
|
|
);
|