We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d27359 commit 5f65c05Copy full SHA for 5f65c05
lib/typescript/types.d.ts
@@ -60,6 +60,14 @@ export interface PagerViewProps {
60
* - 'on-drag', the keyboard is dismissed when a drag begins.
61
*/
62
keyboardDismissMode?: 'none' | 'on-drag';
63
+ /**
64
+ * A class for defining layout directions. A layout direction can be left-to-right (LTR) or right-to-left (RTL).
65
+ * It can also be deduced from the default language script of a locale.
66
+ * - 'rtl' right to left
67
+ * - 'ltr', left to right
68
+ * - 'locale', default language script of a locale
69
+ */
70
+ layoutDirection?: 'rtl' | 'ltr' | 'locale';
71
/**
72
* Blank space to show between pages. This is only visible while scrolling, pages are still
73
* edge-to-edge.
0 commit comments