From 3f64a576c0f5eeaf43b595c178247d55983e519f Mon Sep 17 00:00:00 2001 From: Manuel Beck Date: Fri, 19 Jun 2026 08:12:47 +0200 Subject: [PATCH] doc(readme): `StatusBar.backgroundColorByHexString`only supports `#RRGGBB` on iOS --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 07c4cd8..b5a67ac 100644 --- a/README.md +++ b/README.md @@ -216,9 +216,9 @@ CSS shorthand properties are also supported. StatusBar.backgroundColorByHexString("#333"); // => #333333 StatusBar.backgroundColorByHexString("#FAB"); // => #FFAABB -On iOS, when you set StatusBar.overlaysWebView to false, you can set the background color of the statusbar by a hex string (#RRGGBB). +On iOS only the format `#RRGGBB` is supported. An alpha value is not supported. -On Android, when StatusBar.overlaysWebView is true, and on WP7&8, you can also specify values as #AARRGGBB, where AA is an alpha value. +On Android, when StatusBar.overlaysWebView is true you can also specify values as #AARRGGBB, where AA is an alpha value. Supported Platforms -------------------