@umituz/react-native-subscription 2.27.118 → 2.27.119

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.27.118",
3
+ "version": "2.27.119",
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",
@@ -58,9 +58,9 @@ export const PremiumStatusBadge: React.FC<PremiumStatusBadgeProps> = ({
58
58
  () =>
59
59
  StyleSheet.create({
60
60
  badge: {
61
- paddingHorizontal: tokens.spacing.sm,
61
+ paddingHorizontal: tokens.spacing.md,
62
62
  paddingVertical: tokens.spacing.xs,
63
- borderRadius: tokens.radius.xs,
63
+ borderRadius: tokens.radius.full,
64
64
  backgroundColor,
65
65
  },
66
66
  badgeText: {
@@ -76,11 +76,7 @@ export const SubscriptionDetailScreen: React.FC<
76
76
  gap: tokens.spacing.lg,
77
77
  },
78
78
  cardsContainer: {
79
- gap: tokens.spacing.lg,
80
- },
81
- spacer: {
82
- flex: 1,
83
- minHeight: tokens.spacing.xl,
79
+ gap: tokens.spacing.xl,
84
80
  },
85
81
  }),
86
82
  [tokens]
@@ -128,7 +124,7 @@ export const SubscriptionDetailScreen: React.FC<
128
124
  )}
129
125
  </View>
130
126
 
131
- <View style={styles.spacer} />
127
+
132
128
  </ScreenLayout>
133
129
  );
134
130
  };