@umituz/react-native-subscription 2.40.8 → 2.40.10
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.40.
|
|
3
|
+
"version": "2.40.10",
|
|
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",
|
|
@@ -18,10 +18,8 @@ export const PurchaseLoadingOverlay: React.FC<PurchaseLoadingOverlayProps> = Rea
|
|
|
18
18
|
const tokens = useAppDesignTokens();
|
|
19
19
|
const isPurchasing = usePurchaseLoadingStore(selectIsPurchasing);
|
|
20
20
|
|
|
21
|
-
if (!isPurchasing) return null;
|
|
22
|
-
|
|
23
21
|
return (
|
|
24
|
-
<Modal visible transparent animationType="none" statusBarTranslucent>
|
|
22
|
+
<Modal visible={isPurchasing} transparent animationType="none" statusBarTranslucent>
|
|
25
23
|
<View style={[styles.container, { backgroundColor: "rgba(0, 0, 0, 0.7)" }]}>
|
|
26
24
|
<View style={[styles.content, { backgroundColor: tokens.colors.surface }]}>
|
|
27
25
|
<AtomicSpinner size="lg" color="primary" />
|