@umituz/react-native-splash 1.6.1 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-splash",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Generic splash screen for React Native apps with animations, gradients, and customizable branding. SOLID, DRY, KISS principles applied.",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -111,7 +111,7 @@ export const SplashScreen: React.FC<SplashScreenProps> = ({
111
111
  <View style={styles.container}>
112
112
  {hasGradient ? (
113
113
  <LinearGradient
114
- colors={finalGradientColors}
114
+ colors={finalGradientColors as readonly string[]}
115
115
  start={{ x: 0, y: 0 }}
116
116
  end={{ x: 1, y: 1 }}
117
117
  style={styles.gradient}