UNPKG

one

Version:

One is a new React Framework that makes Vite serve both native and web.

12 lines (10 loc) 445 B
import type { LocaleDirection } from '@react-navigation/native' /** * Web is always ltr here: this only feeds react-navigation's LocaleDirContext, * which drives native gestures and animations, and reading the document on the * client would render differently than SSR. Style your rtl layout with css. * The .native sibling reads the real value from I18nManager. */ export function getLocaleDirection(): LocaleDirection { return 'ltr' }