From d2668c5eae14a18ffeedbaa1882ad03712e12918 Mon Sep 17 00:00:00 2001 From: Joel Arvidsson Date: Mon, 13 Nov 2023 14:49:12 +0100 Subject: [PATCH] fix: update layout.orientation types to match iOS implementation (#7811) --- lib/src/interfaces/Options.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/src/interfaces/Options.ts b/lib/src/interfaces/Options.ts index 4851b40fbfa..1ab5b4ef521 100644 --- a/lib/src/interfaces/Options.ts +++ b/lib/src/interfaces/Options.ts @@ -34,8 +34,11 @@ type FontWeight = | '900' | FontWeightIOS; export type LayoutOrientation = + | 'all' + | 'default' | 'portrait' | 'landscape' + | 'upsideDown' | 'sensor' | 'sensorLandscape' | 'sensorPortrait';