From 12b6b15f3000ddbf691d7f239e28a95c6069cea2 Mon Sep 17 00:00:00 2001 From: Vit Horacek Date: Sun, 1 Mar 2026 21:00:09 +0000 Subject: [PATCH] Fix card widget title clipping on Android 16 Remove redundant flexRow and alignItemsCenter styles from WidgetContainer title wrapper. On Android 16, flexDirection: 'row' with wrap-content text causes the title to be clipped at word boundaries. Since the View only contains a single Text child, these styles are unnecessary. Made-with: Cursor --- src/components/WidgetContainer.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/WidgetContainer.tsx b/src/components/WidgetContainer.tsx index 420358c4dc784..d1962a54c3f09 100644 --- a/src/components/WidgetContainer.tsx +++ b/src/components/WidgetContainer.tsx @@ -26,9 +26,7 @@ function WidgetContainer({children, title, containerStyles}: WidgetContainerProp return ( - - {!!title && {title}} - + {!!title && {title}} {children}