From 051f402ad2e8f22b883288bcfd73f280fb095d51 Mon Sep 17 00:00:00 2001 From: Joel Arvidsson Date: Thu, 9 Nov 2023 13:23:47 +0100 Subject: [PATCH] fix: update layout.orientation types to match iOS implementation --- 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';