@umituz/react-native-subscription 2.26.1 → 2.26.3

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-subscription",
3
- "version": "2.26.1",
3
+ "version": "2.26.3",
4
4
  "description": "Complete subscription management with RevenueCat, paywall UI, and credits system for React Native apps",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -91,7 +91,6 @@
91
91
  "react-native": "0.81.5",
92
92
  "react-native-gesture-handler": "^2.30.0",
93
93
  "react-native-purchases": "^7.0.0",
94
- "react-native-reanimated": "^4.2.1",
95
94
  "react-native-safe-area-context": "^5.0.0",
96
95
  "react-native-svg": "^15.15.1",
97
96
  "rn-emoji-keyboard": "^1.7.0",
@@ -108,7 +108,7 @@ export const PaywallModal: React.FC<PaywallModalProps> = React.memo((props) => {
108
108
  <ScrollView showsVerticalScrollIndicator={false} contentContainerStyle={styles.scroll}>
109
109
  {heroImage && (
110
110
  <View style={styles.heroContainer}>
111
- <Image source={heroImage} style={styles.heroImage} contentFit="cover" transition={300} />
111
+ <Image source={heroImage} style={styles.heroImage} contentFit="cover" transition={0} />
112
112
  </View>
113
113
  )}
114
114