@umituz/react-native-subscription 2.13.16 → 2.13.17
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.13.
|
|
3
|
+
"version": "2.13.17",
|
|
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",
|
|
@@ -227,7 +227,7 @@ const styles = StyleSheet.create({
|
|
|
227
227
|
modalContent: { padding: 0, borderWidth: 0, overflow: "hidden" },
|
|
228
228
|
container: { flex: 1 },
|
|
229
229
|
closeBtn: { position: "absolute", top: 12, right: 12, width: 32, height: 32, borderRadius: 16, justifyContent: "center", alignItems: "center", zIndex: 10 },
|
|
230
|
-
scroll: { flexGrow: 1, padding: 16, paddingTop: 48 },
|
|
230
|
+
scroll: { flexGrow: 1, padding: 16, paddingTop: 48, paddingBottom: 32 },
|
|
231
231
|
header: { alignItems: "center", marginBottom: 12 },
|
|
232
232
|
title: { fontWeight: "700", textAlign: "center", marginBottom: 4 },
|
|
233
233
|
subtitle: { textAlign: "center" },
|
|
@@ -153,10 +153,13 @@ const styles = StyleSheet.create({
|
|
|
153
153
|
flexDirection: "row",
|
|
154
154
|
justifyContent: "space-between",
|
|
155
155
|
alignItems: "center",
|
|
156
|
+
gap: 16,
|
|
156
157
|
},
|
|
157
158
|
label: {
|
|
159
|
+
flex: 1,
|
|
158
160
|
},
|
|
159
161
|
value: {
|
|
160
162
|
fontWeight: "600",
|
|
163
|
+
textAlign: "right",
|
|
161
164
|
},
|
|
162
165
|
});
|