From 73d7c5df0594e2fc833f7ad0fbfa9ae0a2c55ed0 Mon Sep 17 00:00:00 2001 From: mrevanzak Date: Sat, 17 Jan 2026 07:32:15 +0700 Subject: [PATCH] feat(styles): add textAlign to VoltraTextStyle Add textAlign property to VoltraTextStyle type definition, aligning TypeScript types with existing native iOS support for text alignment in Timer and Text components. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus --- src/styles/types.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/styles/types.ts b/src/styles/types.ts index f0257fe..d157fdc 100644 --- a/src/styles/types.ts +++ b/src/styles/types.ts @@ -44,7 +44,10 @@ export type VoltraViewStyle = Pick< } export type VoltraTextStyle = VoltraViewStyle & - Pick + Pick< + RNTextStyle, + 'fontSize' | 'fontWeight' | 'color' | 'letterSpacing' | 'fontVariant' | 'textDecorationLine' | 'textAlign' + > export type VoltraStyleProp = StyleProp export type VoltraTextStyleProp = StyleProp