rn-vs-lb 1.0.23 → 1.0.24
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/dist/components/bottomsheet/PostOptionSheet copy.js +66 -77
- package/dist/components/profile/meetProfileCard.js +82 -48
- package/dist/constants/theme copy.js +214 -0
- package/dist/constants/theme.js +2 -129
- package/dist/types/components/bottomsheet/PostOptionSheet copy.d.ts +0 -8
- package/dist/types/constants/theme copy.d.ts +0 -0
- package/dist/types/constants/theme.d.ts +0 -252
- package/package.json +1 -1
|
@@ -1,78 +1,67 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
);
|
|
69
|
-
};
|
|
70
|
-
var styles = react_native_1.StyleSheet.create({
|
|
71
|
-
container: {
|
|
72
|
-
flex: 1,
|
|
73
|
-
},
|
|
74
|
-
bottomSheetBack: {
|
|
75
|
-
top: -1000,
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
exports.default = PostOptionSheet;
|
|
2
|
+
// import React, { FC, useMemo } from "react";
|
|
3
|
+
// import { StyleSheet, View, Text, Image, TouchableOpacity, Dimensions } from "react-native";
|
|
4
|
+
// import { GestureHandlerRootView } from 'react-native-gesture-handler';
|
|
5
|
+
// import BottomSheet, { BottomSheetBackdrop } from "@gorhom/bottom-sheet";
|
|
6
|
+
// import { GlobalStyleSheet } from "../../constants/styleSheet";
|
|
7
|
+
// import { COLORS, IMAGES } from "../../constants/theme";
|
|
8
|
+
// import { BottomSheetMethods } from "@gorhom/bottom-sheet/lib/typescript/types";
|
|
9
|
+
// interface PostOptionSheetProps {
|
|
10
|
+
// sheetRef: React.RefObject<BottomSheetMethods>;
|
|
11
|
+
// onClose: () => void;
|
|
12
|
+
// }
|
|
13
|
+
// const PostOptionSheet: FC<PostOptionSheetProps> = ({ sheetRef, onClose }) => {
|
|
14
|
+
// const screenHeight = Dimensions.get("window").height;
|
|
15
|
+
// // Вычисляем snapPoints с минимальным значением 10% для первого рендера
|
|
16
|
+
// const snapPoints = useMemo(() => {
|
|
17
|
+
// const percentage = (180 / screenHeight) * 100;
|
|
18
|
+
// // const percentage = 100;
|
|
19
|
+
// return [`${Math.max(percentage, 10)}%`];
|
|
20
|
+
// }, [screenHeight]);
|
|
21
|
+
// return (
|
|
22
|
+
// // <GestureHandlerRootView style={styles.container}>
|
|
23
|
+
// <BottomSheet
|
|
24
|
+
// ref={sheetRef}
|
|
25
|
+
// index={-1}
|
|
26
|
+
// snapPoints={snapPoints}
|
|
27
|
+
// enableDynamicSizing={false}
|
|
28
|
+
// enablePanDownToClose={true}
|
|
29
|
+
// onClose={onClose}
|
|
30
|
+
// handleStyle={{ top: 0 }}
|
|
31
|
+
// handleIndicatorStyle={{ backgroundColor: COLORS.border, width: 92 }}
|
|
32
|
+
// backgroundStyle={{ backgroundColor: COLORS.card }}
|
|
33
|
+
// backdropComponent={(props) => (
|
|
34
|
+
// <BottomSheetBackdrop {...props} disappearsOnIndex={-1} onPress={onClose}/>
|
|
35
|
+
// )}
|
|
36
|
+
// >
|
|
37
|
+
// <View style={GlobalStyleSheet.container}>
|
|
38
|
+
// <TouchableOpacity style={GlobalStyleSheet.TouchableOpacity}>
|
|
39
|
+
// <Image style={GlobalStyleSheet.image} source={IMAGES.info} />
|
|
40
|
+
// <Text style={GlobalStyleSheet.text}>Report</Text>
|
|
41
|
+
// </TouchableOpacity>
|
|
42
|
+
// <TouchableOpacity style={GlobalStyleSheet.TouchableOpacity}>
|
|
43
|
+
// <Image style={[GlobalStyleSheet.image, { tintColor: COLORS.title }]} source={IMAGES.share2} />
|
|
44
|
+
// <Text style={[GlobalStyleSheet.text, { color: COLORS.title }]}>Share</Text>
|
|
45
|
+
// </TouchableOpacity>
|
|
46
|
+
// <TouchableOpacity style={GlobalStyleSheet.TouchableOpacity}>
|
|
47
|
+
// <Image style={[GlobalStyleSheet.image, { tintColor: COLORS.title }]} source={IMAGES.copylink} />
|
|
48
|
+
// <Text style={[GlobalStyleSheet.text, { color: COLORS.title }]}>Copy link</Text>
|
|
49
|
+
// </TouchableOpacity>
|
|
50
|
+
// <TouchableOpacity style={GlobalStyleSheet.TouchableOpacity}>
|
|
51
|
+
// <Image style={[GlobalStyleSheet.image, { tintColor: COLORS.title }]} source={IMAGES.close} />
|
|
52
|
+
// <Text style={[GlobalStyleSheet.text, { color: COLORS.title }]}>Hide post</Text>
|
|
53
|
+
// </TouchableOpacity>
|
|
54
|
+
// </View>
|
|
55
|
+
// </BottomSheet>
|
|
56
|
+
// // </GestureHandlerRootView>
|
|
57
|
+
// );
|
|
58
|
+
// };
|
|
59
|
+
// const styles = StyleSheet.create({
|
|
60
|
+
// container: {
|
|
61
|
+
// flex: 1,
|
|
62
|
+
// },
|
|
63
|
+
// bottomSheetBack: {
|
|
64
|
+
// top: -1000,
|
|
65
|
+
// }
|
|
66
|
+
// });
|
|
67
|
+
// export default PostOptionSheet;
|
|
@@ -1,23 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
|
3
|
-
__assign = Object.assign || function(t) {
|
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
-
s = arguments[i];
|
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
-
t[p] = s[p];
|
|
8
|
-
}
|
|
9
|
-
return t;
|
|
10
|
-
};
|
|
11
|
-
return __assign.apply(this, arguments);
|
|
12
|
-
};
|
|
13
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
4
|
};
|
|
16
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
6
|
var react_1 = __importDefault(require("react"));
|
|
18
7
|
var react_native_1 = require("react-native");
|
|
19
|
-
var theme_1 = require("../../constants/theme");
|
|
20
|
-
var styleSheet_1 = require("../../constants/styleSheet");
|
|
21
8
|
var GradientLine = function () {
|
|
22
9
|
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
23
10
|
react_1.default.createElement(react_native_1.View, { style: [styles.line, styles.right] }),
|
|
@@ -25,41 +12,88 @@ var GradientLine = function () {
|
|
|
25
12
|
};
|
|
26
13
|
var MeetProfileCard = function (_a) {
|
|
27
14
|
var name = _a.name, userName = _a.userName, quote = _a.quote, imageUri = _a.imageUri, postCount = _a.postCount, followersCount = _a.followersCount, followingCount = _a.followingCount;
|
|
28
|
-
return (react_1.default.createElement(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
15
|
+
return (react_1.default.createElement(react_1.default.Fragment, null, "hello")
|
|
16
|
+
// <ImageBackground
|
|
17
|
+
// style={{width:'100%',height:340,borderBottomLeftRadius:25,borderBottomRightRadius:25,overflow:'hidden'}}
|
|
18
|
+
// source={IMAGES.profilebackground}
|
|
19
|
+
// >
|
|
20
|
+
// <View style={GlobalStyleSheet.container}>
|
|
21
|
+
// <View style={[GlobalStyleSheet.flexalingjust,{marginTop:10}]}>
|
|
22
|
+
// <TouchableOpacity
|
|
23
|
+
// onPress={() => console.log('goBack')}
|
|
24
|
+
// >
|
|
25
|
+
// <Image
|
|
26
|
+
// style={{ width: 18, height: 18, tintColor: '#fff' }}
|
|
27
|
+
// source={IMAGES.arrowleft}
|
|
28
|
+
// />
|
|
29
|
+
// </TouchableOpacity>
|
|
30
|
+
// <TouchableOpacity
|
|
31
|
+
// onPress={() => console.log('Settings')}
|
|
32
|
+
// >
|
|
33
|
+
// <View style={GlobalStyleSheet.background}>
|
|
34
|
+
// <Image
|
|
35
|
+
// style={[GlobalStyleSheet.image,{tintColor: COLORS.white }]}
|
|
36
|
+
// source={IMAGES.setting}
|
|
37
|
+
// />
|
|
38
|
+
// </View>
|
|
39
|
+
// </TouchableOpacity>
|
|
40
|
+
// </View>
|
|
41
|
+
// </View>
|
|
42
|
+
// <View style={{ alignItems: 'center', justifyContent: 'center' }}>
|
|
43
|
+
// <View>
|
|
44
|
+
// <TouchableOpacity>
|
|
45
|
+
// <View style={{ backgroundColor:'rgba(217, 217, 217, .6)',height:110,width:110,borderRadius:100,alignItems:'center',justifyContent:'center'}}>
|
|
46
|
+
// <Image
|
|
47
|
+
// style={{width:100,height:100,borderRadius:100}}
|
|
48
|
+
// // source={IMAGES.profile}
|
|
49
|
+
// source={{ uri: imageUri }}
|
|
50
|
+
// />
|
|
51
|
+
// </View>
|
|
52
|
+
// </TouchableOpacity>
|
|
53
|
+
// <TouchableOpacity
|
|
54
|
+
// onPress={()=> console.log('EditProfile')}
|
|
55
|
+
// style={{position:'absolute',bottom:0,right:0}}
|
|
56
|
+
// >
|
|
57
|
+
// <View style={{ backgroundColor: '#001F50', width: 36, height: 36, borderRadius: 50, alignItems:'center',justifyContent:'center' }}>
|
|
58
|
+
// <View style={{ backgroundColor: '#2979F8', width: 30, height: 30, borderRadius: 50, alignItems:'center',justifyContent:'center'}}>
|
|
59
|
+
// <Image
|
|
60
|
+
// style={{width:18,height:18,resizeMode:'contain'}}
|
|
61
|
+
// source={IMAGES.write2}
|
|
62
|
+
// />
|
|
63
|
+
// </View>
|
|
64
|
+
// </View>
|
|
65
|
+
// </TouchableOpacity>
|
|
66
|
+
// </View>
|
|
67
|
+
// <View style={{marginTop:20,alignItems:'center'}}>
|
|
68
|
+
// <Text style={{ ...FONTS.h6, color: COLORS.white }}>{name}</Text>
|
|
69
|
+
// {userName && <Text style={{ ...FONTS.font, color: COLORS.white,opacity:.6,marginTop:5 }}>{userName}</Text>}
|
|
70
|
+
// </View>
|
|
71
|
+
// <View style={{ backgroundColor: 'rgba(255, 255, 255, .1)', height: 70, width: 300, borderRadius: 12, marginTop: 20, alignItems: 'center', justifyContent: 'center', flexDirection: 'row', }}>
|
|
72
|
+
// <View style={{ alignItems: 'center', width: '33.33%' }}>
|
|
73
|
+
// <Text style={GlobalStyleSheet.textfont2}>{postCount}</Text>
|
|
74
|
+
// <Text style={GlobalStyleSheet.titlefont}>Post</Text>
|
|
75
|
+
// </View>
|
|
76
|
+
// <View style={{ width: '33.33%' }}>
|
|
77
|
+
// <TouchableOpacity style={{ alignItems: 'center' }}
|
|
78
|
+
// onPress={() => console.log('Followers')}
|
|
79
|
+
// >
|
|
80
|
+
// <Text style={GlobalStyleSheet.textfont2}>{followersCount}</Text>
|
|
81
|
+
// <Text style={GlobalStyleSheet.titlefont}>Followers</Text>
|
|
82
|
+
// </TouchableOpacity>
|
|
83
|
+
// </View>
|
|
84
|
+
// <View style={{ width: '33.33%' }}>
|
|
85
|
+
// <TouchableOpacity style={{ alignItems: 'center', }}
|
|
86
|
+
// onPress={() => console.log('Following')}
|
|
87
|
+
// >
|
|
88
|
+
// <Text style={GlobalStyleSheet.textfont2}>{followingCount}</Text>
|
|
89
|
+
// <Text style={GlobalStyleSheet.titlefont}>Following</Text>
|
|
90
|
+
// </TouchableOpacity>
|
|
91
|
+
// </View>
|
|
92
|
+
// <GradientLine />
|
|
93
|
+
// </View>
|
|
94
|
+
// </View>
|
|
95
|
+
// </ImageBackground>
|
|
96
|
+
);
|
|
63
97
|
};
|
|
64
98
|
var styles = react_native_1.StyleSheet.create({
|
|
65
99
|
line: {
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// import { Dimensions } from "react-native";
|
|
3
|
+
// const { width, height } = Dimensions.get('screen');
|
|
4
|
+
// export const COLORS = {
|
|
5
|
+
// primary: "#6f2da8",
|
|
6
|
+
// primaryLight: "#7BAEFF",
|
|
7
|
+
// // primaryLight: "#9E5FD3",
|
|
8
|
+
// secondary: "#002C72",
|
|
9
|
+
// success: "#0ecb81",
|
|
10
|
+
// danger: "#ff4a5c",
|
|
11
|
+
// info: "#627EEA",
|
|
12
|
+
// warning: "#ffb02c",
|
|
13
|
+
// yellow: "#fff346",
|
|
14
|
+
// white: "#fff",
|
|
15
|
+
// black: "#000",
|
|
16
|
+
// red:"#ff0000",
|
|
17
|
+
// dark: "#2f2f2f",
|
|
18
|
+
// light: "#E6E6E6",
|
|
19
|
+
// // light
|
|
20
|
+
// title: "#000",
|
|
21
|
+
// text: "#475A77",
|
|
22
|
+
// background: "#EFF3FA",
|
|
23
|
+
// card: "#fff",
|
|
24
|
+
// border: "rgba(0, 0, 0, 0.10)",
|
|
25
|
+
// input: "#EFF3FA",
|
|
26
|
+
// placeholder: 'rgba(71,90,119,.5)',
|
|
27
|
+
// // dark
|
|
28
|
+
// darkTitle: "#fff",
|
|
29
|
+
// darkText: "rgba(255,255,255,.6)",
|
|
30
|
+
// darkBackground: "#070C1F",
|
|
31
|
+
// darkCard: "#0D163D",
|
|
32
|
+
// darkBorder: "rgba(255,255,255,.15)",
|
|
33
|
+
// darkInput: "rgba(255,255,255,.1)",
|
|
34
|
+
// darkPlaceholder: "rgba(255,255,255,.5)",
|
|
35
|
+
// //text
|
|
36
|
+
// greyText: "#888",
|
|
37
|
+
// // #666',
|
|
38
|
+
// //background
|
|
39
|
+
// // #f5f5f5
|
|
40
|
+
// }
|
|
41
|
+
// export const SIZES = {
|
|
42
|
+
// font: 14,
|
|
43
|
+
// fontSm: 13,
|
|
44
|
+
// fontXs: 12,
|
|
45
|
+
// radius: 10,
|
|
46
|
+
// radius_lg: 20,
|
|
47
|
+
// radius_sm: 8,
|
|
48
|
+
// //space
|
|
49
|
+
// xxs: 4,
|
|
50
|
+
// xs: 8,
|
|
51
|
+
// sm: 12,
|
|
52
|
+
// md: 16,
|
|
53
|
+
// lg: 20,
|
|
54
|
+
// xl: 24,
|
|
55
|
+
// //Font Sizes
|
|
56
|
+
// h1: 40,
|
|
57
|
+
// h2: 28,
|
|
58
|
+
// h3: 24,
|
|
59
|
+
// h4: 20,
|
|
60
|
+
// h5: 18,
|
|
61
|
+
// h6: 16,
|
|
62
|
+
// //App dimensions
|
|
63
|
+
// width,
|
|
64
|
+
// height,
|
|
65
|
+
// container : 800,
|
|
66
|
+
// contentArea: {
|
|
67
|
+
// paddingTop: 70,
|
|
68
|
+
// paddingBottom: 150,
|
|
69
|
+
// }
|
|
70
|
+
// };
|
|
71
|
+
// export const FONTS = {
|
|
72
|
+
// font: { fontSize: SIZES.font, lineHeight: 20 },
|
|
73
|
+
// fontSm: { fontSize: SIZES.fontSm, lineHeight: 18 },
|
|
74
|
+
// fontXs: { fontSize: SIZES.fontXs, lineHeight: 16 },
|
|
75
|
+
// h1: { fontSize: SIZES.h1, lineHeight: 48, color: COLORS.title },
|
|
76
|
+
// h2: { fontSize: SIZES.h2, lineHeight: 34, color: COLORS.title },
|
|
77
|
+
// h3: { fontSize: SIZES.h3, lineHeight: 28, color: COLORS.title },
|
|
78
|
+
// h4: { fontSize: SIZES.h4, lineHeight: 26, color: COLORS.title },
|
|
79
|
+
// h5: { fontSize: SIZES.h5, lineHeight: 24, color: COLORS.title },
|
|
80
|
+
// h6: { fontSize: SIZES.h6, lineHeight: 20, color: COLORS.title },
|
|
81
|
+
// fontRegular: { fontWeight: "300" },
|
|
82
|
+
// fontMedium: { fontWeight: "400" },
|
|
83
|
+
// fontSemiBold: { fontWeight: "500" },
|
|
84
|
+
// fontBold: { fontWeight: '600' },
|
|
85
|
+
// }
|
|
86
|
+
// export const IMAGES = {
|
|
87
|
+
// logo: require('../assets/images/logo.png'),
|
|
88
|
+
// logo2: require('../assets/images/logo2.png'),
|
|
89
|
+
// // logo3: require('../assets/images/pllaceLogo.js'),
|
|
90
|
+
// email: require('../assets/images/icons/email.png'),
|
|
91
|
+
// lock: require('../assets/images/icons/lock.png'),
|
|
92
|
+
// eyeopen: require('../assets/images/icons/img-5.png'),
|
|
93
|
+
// eyeclose: require('../assets/images/icons/eye-close.png'),
|
|
94
|
+
// google: require('../assets/images/icons/google.png'),
|
|
95
|
+
// usename: require('../assets/images/icons/usename.png'),
|
|
96
|
+
// home: require('../assets/images/icons/home.png'),
|
|
97
|
+
// search: require('../assets/images/icons/search.png'),
|
|
98
|
+
// reels: require('../assets/images/icons/reels.png'),
|
|
99
|
+
// chat: require('../assets/images/icons/chat.png'),
|
|
100
|
+
// chat2: require('../assets/images/icons/chat-2.png'),
|
|
101
|
+
// comment: require('../assets/images/icons/comment.png'),
|
|
102
|
+
// like: require('../assets/images/icons/like.png'),
|
|
103
|
+
// like2: require('../assets/images/icons/like2.png'),
|
|
104
|
+
// bell: require('../assets/images/icons/bell.png'),
|
|
105
|
+
// more: require('../assets/images/icons/more.png'),
|
|
106
|
+
// plus: require('../assets/images/icons/plus.png'),
|
|
107
|
+
// save: require('../assets/images/icons/save.png'),
|
|
108
|
+
// save2: require('../assets/images/icons/save-2.png'),
|
|
109
|
+
// share: require('../assets/images/icons/share.png'),
|
|
110
|
+
// share2: require('../assets/images/icons/share2.png'),
|
|
111
|
+
// profile: require('../assets/images/profile/profile.jpg'),
|
|
112
|
+
// profile2: require('../assets/images/profile/profile-2.jpg'),
|
|
113
|
+
// profilepic1: require('../assets/images/profile/pic-1.jpg'),
|
|
114
|
+
// profilepic2: require('../assets/images/profile/pic-2.jpg'),
|
|
115
|
+
// profilepic3: require('../assets/images/profile/pic-3.jpg'),
|
|
116
|
+
// profilepic4: require('../assets/images/profile/pic-4.jpg'),
|
|
117
|
+
// profilepic5: require('../assets/images/profile/pic-5.jpg'),
|
|
118
|
+
// profilepic6: require('../assets/images/profile/pic-6.jpg'),
|
|
119
|
+
// profilepic7: require('../assets/images/profile/pic-7.jpg'),
|
|
120
|
+
// profilepic8: require('../assets/images/profile/pic-8.jpg'),
|
|
121
|
+
// profilepic9: require('../assets/images/profile/pic-9.jpg'),
|
|
122
|
+
// profilepic10: require('../assets/images/profile/pic-10.jpg'),
|
|
123
|
+
// profilepic11: require('../assets/images/profile/pic-11.jpg'),
|
|
124
|
+
// profilepic12: require('../assets/images/profile/pic-12.jpg'),
|
|
125
|
+
// profilepic13: require('../assets/images/profile/pic-13.jpg'),
|
|
126
|
+
// profilepic14: require('../assets/images/profile/pic-14.jpg'),
|
|
127
|
+
// profilepic15: require('../assets/images/profile/pic-15.jpg'),
|
|
128
|
+
// profilepic16: require('../assets/images/profile/pic-16.jpg'),
|
|
129
|
+
// profilepic17: require('../assets/images/profile/pic-17.jpg'),
|
|
130
|
+
// profilepic18: require('../assets/images/profile/pic-18.jpg'),
|
|
131
|
+
// profilepic19: require('../assets/images/profile/pic-19.jpg'),
|
|
132
|
+
// profilepic20: require('../assets/images/profile/pic-20.jpg'),
|
|
133
|
+
// profilepic21: require('../assets/images/profile/pic-21.jpg'),
|
|
134
|
+
// profilepic22: require('../assets/images/profile/pic-22.jpg'),
|
|
135
|
+
// camera: require('../assets/images/icons/camera.png'),
|
|
136
|
+
// components: require('../assets/images/icons/components.png'),
|
|
137
|
+
// storypic1: require('../assets/images/story/story-1.jpg'),
|
|
138
|
+
// storypic2: require('../assets/images/story/story-2.jpg'),
|
|
139
|
+
// storypic3: require('../assets/images/story/story-3.jpg'),
|
|
140
|
+
// storypic4: require('../assets/images/story/story-4.jpg'),
|
|
141
|
+
// storypic5: require('../assets/images/story/story-5.jpg'),
|
|
142
|
+
// storypic6: require('../assets/images/story/story-6.jpg'),
|
|
143
|
+
// storypic7: require('../assets/images/story/story-7.jpg'),
|
|
144
|
+
// storypic8: require('../assets/images/story/story-8.jpg'),
|
|
145
|
+
// storypic9: require('../assets/images/story/story-9.jpg'),
|
|
146
|
+
// storypic10: require('../assets/images/story/story-10.jpg'),
|
|
147
|
+
// storypic11: require('../assets/images/story/story-11.jpg'),
|
|
148
|
+
// storypic12: require('../assets/images/story/story-12.jpg'),
|
|
149
|
+
// storypic13: require('../assets/images/story/story-13.jpg'),
|
|
150
|
+
// storypic14: require('../assets/images/story/story-14.jpg'),
|
|
151
|
+
// storypic15: require('../assets/images/story/story-15.jpg'),
|
|
152
|
+
// arrowleft: require('../assets/images/icons/arrow-left.png'),
|
|
153
|
+
// happy: require('../assets/images/icons/happy.png'),
|
|
154
|
+
// send: require('../assets/images/icons/send.png'),
|
|
155
|
+
// downarrow: require('../assets/images/icons/downarrow.png'),
|
|
156
|
+
// rigtharrow: require('../assets/images/icons/rightarrow.png'),
|
|
157
|
+
// verified: require('../assets/images/icons/verified.png'),
|
|
158
|
+
// about: require('../assets/images/icons/about.png'),
|
|
159
|
+
// theme: require('../assets/images/icons/theme.png'),
|
|
160
|
+
// logout: require('../assets/images/icons/logout.png'),
|
|
161
|
+
// login: require('../assets/images/icons/login.png'),
|
|
162
|
+
// user: require('../assets/images/icons/user.png'),
|
|
163
|
+
// pin: require('../assets/images/icons/pin.png'),
|
|
164
|
+
// info: require('../assets/images/icons/info.png'),
|
|
165
|
+
// close: require('../assets/images/icons/close.png'),
|
|
166
|
+
// downaeeowsmall: require('../assets/images/icons/downaeeowsmall.png'),
|
|
167
|
+
// close2: require('../assets/images/icons/close2.png'),
|
|
168
|
+
// copylink: require('../assets/images/icons/copy.png'),
|
|
169
|
+
// write: require('../assets/images/icons/write.png'),
|
|
170
|
+
// write2: require('../assets/images/icons/write2.png'),
|
|
171
|
+
// call: require('../assets/images/icons/call.png'),
|
|
172
|
+
// video: require('../assets/images/icons/video.png'),
|
|
173
|
+
// videocall: require('../assets/images/story/videocall.jpg'),
|
|
174
|
+
// videocall2: require('../assets/images/story/videocall2.jpg'),
|
|
175
|
+
// phone: require('../assets/images/icons/phone.png'),
|
|
176
|
+
// audio: require('../assets/images/icons/audio.png'),
|
|
177
|
+
// audiomute: require('../assets/images/icons/audiomute.png'),
|
|
178
|
+
// volume: require('../assets/images/icons/volume.png'),
|
|
179
|
+
// zoom: require('../assets/images/icons/zoom.png'),
|
|
180
|
+
// block: require('../assets/images/icons/block.png'),
|
|
181
|
+
// delete: require('../assets/images/icons/delete.png'),
|
|
182
|
+
// cricle: require('../assets/images/icons/cricle.png'),
|
|
183
|
+
// music: require('../assets/images/icons/music.png'),
|
|
184
|
+
// profilebackground: require('../assets/images/profile/profilebackground.jpg'),
|
|
185
|
+
// setting: require('../assets/images/icons/setting.png'),
|
|
186
|
+
// profilepic: require('../assets/images/icons/profilepic.png'),
|
|
187
|
+
// musicpic: require('../assets/images/profile/musicpic.jpg'),
|
|
188
|
+
// play: require('../assets/images/icons/play.png'),
|
|
189
|
+
// pause: require('../assets/images/icons/pause.png'),
|
|
190
|
+
// volumemute: require('../assets/images/icons/volumemute.png'),
|
|
191
|
+
// check: require('../assets/images/icons/check.png'),
|
|
192
|
+
// text: require('../assets/images/icons/text.png'),
|
|
193
|
+
// sticker: require('../assets/images/icons/sticker.png'),
|
|
194
|
+
// effect: require('../assets/images/icons/effect.png'),
|
|
195
|
+
// smallpic1: require('../assets/images/small/small-1.jpg'),
|
|
196
|
+
// smallpic2: require('../assets/images/small/small-2.jpg'),
|
|
197
|
+
// smallpic3: require('../assets/images/small/small-3.jpg'),
|
|
198
|
+
// smallpic4: require('../assets/images/small/small-4.jpg'),
|
|
199
|
+
// smallpic5: require('../assets/images/small/small-5.jpg'),
|
|
200
|
+
// smallpic6: require('../assets/images/small/small-6.jpg'),
|
|
201
|
+
// smallpic7: require('../assets/images/small/small-7.jpg'),
|
|
202
|
+
// smallpic8: require('../assets/images/small/small-8.jpg'),
|
|
203
|
+
// smallpic9: require('../assets/images/small/small-9.jpg'),
|
|
204
|
+
// smallpic10: require('../assets/images/small/small-10.jpg'),
|
|
205
|
+
// smallpic11: require('../assets/images/small/small-11.jpg'),
|
|
206
|
+
// }
|
|
207
|
+
// export const VIDEO = {
|
|
208
|
+
// video1: require('../assets/video/video1.mp4'),
|
|
209
|
+
// video2: require('../assets/video/video2.mp4'),
|
|
210
|
+
// video3: require('../assets/video/video3.mp4'),
|
|
211
|
+
// video4: require('../assets/video/video4.mp4'),
|
|
212
|
+
// }
|
|
213
|
+
// const appTheme = { COLORS, SIZES, FONTS, IMAGES, VIDEO }
|
|
214
|
+
// export default appTheme;
|
package/dist/constants/theme.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.FONTS = exports.SIZES = exports.COLORS = void 0;
|
|
4
4
|
var react_native_1 = require("react-native");
|
|
5
5
|
var _a = react_native_1.Dimensions.get('screen'), width = _a.width, height = _a.height;
|
|
6
6
|
exports.COLORS = {
|
|
@@ -85,132 +85,5 @@ exports.FONTS = {
|
|
|
85
85
|
fontSemiBold: { fontWeight: "500" },
|
|
86
86
|
fontBold: { fontWeight: '600' },
|
|
87
87
|
};
|
|
88
|
-
exports.
|
|
89
|
-
logo: require('../assets/images/logo.png'),
|
|
90
|
-
logo2: require('../assets/images/logo2.png'),
|
|
91
|
-
// logo3: require('../assets/images/pllaceLogo.js'),
|
|
92
|
-
email: require('../assets/images/icons/email.png'),
|
|
93
|
-
lock: require('../assets/images/icons/lock.png'),
|
|
94
|
-
eyeopen: require('../assets/images/icons/img-5.png'),
|
|
95
|
-
eyeclose: require('../assets/images/icons/eye-close.png'),
|
|
96
|
-
google: require('../assets/images/icons/google.png'),
|
|
97
|
-
usename: require('../assets/images/icons/usename.png'),
|
|
98
|
-
home: require('../assets/images/icons/home.png'),
|
|
99
|
-
search: require('../assets/images/icons/search.png'),
|
|
100
|
-
reels: require('../assets/images/icons/reels.png'),
|
|
101
|
-
chat: require('../assets/images/icons/chat.png'),
|
|
102
|
-
chat2: require('../assets/images/icons/chat-2.png'),
|
|
103
|
-
comment: require('../assets/images/icons/comment.png'),
|
|
104
|
-
like: require('../assets/images/icons/like.png'),
|
|
105
|
-
like2: require('../assets/images/icons/like2.png'),
|
|
106
|
-
bell: require('../assets/images/icons/bell.png'),
|
|
107
|
-
more: require('../assets/images/icons/more.png'),
|
|
108
|
-
plus: require('../assets/images/icons/plus.png'),
|
|
109
|
-
save: require('../assets/images/icons/save.png'),
|
|
110
|
-
save2: require('../assets/images/icons/save-2.png'),
|
|
111
|
-
share: require('../assets/images/icons/share.png'),
|
|
112
|
-
share2: require('../assets/images/icons/share2.png'),
|
|
113
|
-
profile: require('../assets/images/profile/profile.jpg'),
|
|
114
|
-
profile2: require('../assets/images/profile/profile-2.jpg'),
|
|
115
|
-
profilepic1: require('../assets/images/profile/pic-1.jpg'),
|
|
116
|
-
profilepic2: require('../assets/images/profile/pic-2.jpg'),
|
|
117
|
-
profilepic3: require('../assets/images/profile/pic-3.jpg'),
|
|
118
|
-
profilepic4: require('../assets/images/profile/pic-4.jpg'),
|
|
119
|
-
profilepic5: require('../assets/images/profile/pic-5.jpg'),
|
|
120
|
-
profilepic6: require('../assets/images/profile/pic-6.jpg'),
|
|
121
|
-
profilepic7: require('../assets/images/profile/pic-7.jpg'),
|
|
122
|
-
profilepic8: require('../assets/images/profile/pic-8.jpg'),
|
|
123
|
-
profilepic9: require('../assets/images/profile/pic-9.jpg'),
|
|
124
|
-
profilepic10: require('../assets/images/profile/pic-10.jpg'),
|
|
125
|
-
profilepic11: require('../assets/images/profile/pic-11.jpg'),
|
|
126
|
-
profilepic12: require('../assets/images/profile/pic-12.jpg'),
|
|
127
|
-
profilepic13: require('../assets/images/profile/pic-13.jpg'),
|
|
128
|
-
profilepic14: require('../assets/images/profile/pic-14.jpg'),
|
|
129
|
-
profilepic15: require('../assets/images/profile/pic-15.jpg'),
|
|
130
|
-
profilepic16: require('../assets/images/profile/pic-16.jpg'),
|
|
131
|
-
profilepic17: require('../assets/images/profile/pic-17.jpg'),
|
|
132
|
-
profilepic18: require('../assets/images/profile/pic-18.jpg'),
|
|
133
|
-
profilepic19: require('../assets/images/profile/pic-19.jpg'),
|
|
134
|
-
profilepic20: require('../assets/images/profile/pic-20.jpg'),
|
|
135
|
-
profilepic21: require('../assets/images/profile/pic-21.jpg'),
|
|
136
|
-
profilepic22: require('../assets/images/profile/pic-22.jpg'),
|
|
137
|
-
camera: require('../assets/images/icons/camera.png'),
|
|
138
|
-
components: require('../assets/images/icons/components.png'),
|
|
139
|
-
storypic1: require('../assets/images/story/story-1.jpg'),
|
|
140
|
-
storypic2: require('../assets/images/story/story-2.jpg'),
|
|
141
|
-
storypic3: require('../assets/images/story/story-3.jpg'),
|
|
142
|
-
storypic4: require('../assets/images/story/story-4.jpg'),
|
|
143
|
-
storypic5: require('../assets/images/story/story-5.jpg'),
|
|
144
|
-
storypic6: require('../assets/images/story/story-6.jpg'),
|
|
145
|
-
storypic7: require('../assets/images/story/story-7.jpg'),
|
|
146
|
-
storypic8: require('../assets/images/story/story-8.jpg'),
|
|
147
|
-
storypic9: require('../assets/images/story/story-9.jpg'),
|
|
148
|
-
storypic10: require('../assets/images/story/story-10.jpg'),
|
|
149
|
-
storypic11: require('../assets/images/story/story-11.jpg'),
|
|
150
|
-
storypic12: require('../assets/images/story/story-12.jpg'),
|
|
151
|
-
storypic13: require('../assets/images/story/story-13.jpg'),
|
|
152
|
-
storypic14: require('../assets/images/story/story-14.jpg'),
|
|
153
|
-
storypic15: require('../assets/images/story/story-15.jpg'),
|
|
154
|
-
arrowleft: require('../assets/images/icons/arrow-left.png'),
|
|
155
|
-
happy: require('../assets/images/icons/happy.png'),
|
|
156
|
-
send: require('../assets/images/icons/send.png'),
|
|
157
|
-
downarrow: require('../assets/images/icons/downarrow.png'),
|
|
158
|
-
rigtharrow: require('../assets/images/icons/rightarrow.png'),
|
|
159
|
-
verified: require('../assets/images/icons/verified.png'),
|
|
160
|
-
about: require('../assets/images/icons/about.png'),
|
|
161
|
-
theme: require('../assets/images/icons/theme.png'),
|
|
162
|
-
logout: require('../assets/images/icons/logout.png'),
|
|
163
|
-
login: require('../assets/images/icons/login.png'),
|
|
164
|
-
user: require('../assets/images/icons/user.png'),
|
|
165
|
-
pin: require('../assets/images/icons/pin.png'),
|
|
166
|
-
info: require('../assets/images/icons/info.png'),
|
|
167
|
-
close: require('../assets/images/icons/close.png'),
|
|
168
|
-
downaeeowsmall: require('../assets/images/icons/downaeeowsmall.png'),
|
|
169
|
-
close2: require('../assets/images/icons/close2.png'),
|
|
170
|
-
copylink: require('../assets/images/icons/copy.png'),
|
|
171
|
-
write: require('../assets/images/icons/write.png'),
|
|
172
|
-
write2: require('../assets/images/icons/write2.png'),
|
|
173
|
-
call: require('../assets/images/icons/call.png'),
|
|
174
|
-
video: require('../assets/images/icons/video.png'),
|
|
175
|
-
videocall: require('../assets/images/story/videocall.jpg'),
|
|
176
|
-
videocall2: require('../assets/images/story/videocall2.jpg'),
|
|
177
|
-
phone: require('../assets/images/icons/phone.png'),
|
|
178
|
-
audio: require('../assets/images/icons/audio.png'),
|
|
179
|
-
audiomute: require('../assets/images/icons/audiomute.png'),
|
|
180
|
-
volume: require('../assets/images/icons/volume.png'),
|
|
181
|
-
zoom: require('../assets/images/icons/zoom.png'),
|
|
182
|
-
block: require('../assets/images/icons/block.png'),
|
|
183
|
-
delete: require('../assets/images/icons/delete.png'),
|
|
184
|
-
cricle: require('../assets/images/icons/cricle.png'),
|
|
185
|
-
music: require('../assets/images/icons/music.png'),
|
|
186
|
-
profilebackground: require('../assets/images/profile/profilebackground.jpg'),
|
|
187
|
-
setting: require('../assets/images/icons/setting.png'),
|
|
188
|
-
profilepic: require('../assets/images/icons/profilepic.png'),
|
|
189
|
-
musicpic: require('../assets/images/profile/musicpic.jpg'),
|
|
190
|
-
play: require('../assets/images/icons/play.png'),
|
|
191
|
-
pause: require('../assets/images/icons/pause.png'),
|
|
192
|
-
volumemute: require('../assets/images/icons/volumemute.png'),
|
|
193
|
-
check: require('../assets/images/icons/check.png'),
|
|
194
|
-
text: require('../assets/images/icons/text.png'),
|
|
195
|
-
sticker: require('../assets/images/icons/sticker.png'),
|
|
196
|
-
effect: require('../assets/images/icons/effect.png'),
|
|
197
|
-
smallpic1: require('../assets/images/small/small-1.jpg'),
|
|
198
|
-
smallpic2: require('../assets/images/small/small-2.jpg'),
|
|
199
|
-
smallpic3: require('../assets/images/small/small-3.jpg'),
|
|
200
|
-
smallpic4: require('../assets/images/small/small-4.jpg'),
|
|
201
|
-
smallpic5: require('../assets/images/small/small-5.jpg'),
|
|
202
|
-
smallpic6: require('../assets/images/small/small-6.jpg'),
|
|
203
|
-
smallpic7: require('../assets/images/small/small-7.jpg'),
|
|
204
|
-
smallpic8: require('../assets/images/small/small-8.jpg'),
|
|
205
|
-
smallpic9: require('../assets/images/small/small-9.jpg'),
|
|
206
|
-
smallpic10: require('../assets/images/small/small-10.jpg'),
|
|
207
|
-
smallpic11: require('../assets/images/small/small-11.jpg'),
|
|
208
|
-
};
|
|
209
|
-
exports.VIDEO = {
|
|
210
|
-
video1: require('../assets/video/video1.mp4'),
|
|
211
|
-
video2: require('../assets/video/video2.mp4'),
|
|
212
|
-
video3: require('../assets/video/video3.mp4'),
|
|
213
|
-
video4: require('../assets/video/video4.mp4'),
|
|
214
|
-
};
|
|
215
|
-
var appTheme = { COLORS: exports.COLORS, SIZES: exports.SIZES, FONTS: exports.FONTS, IMAGES: exports.IMAGES, VIDEO: exports.VIDEO };
|
|
88
|
+
var appTheme = { COLORS: exports.COLORS, SIZES: exports.SIZES, FONTS: exports.FONTS };
|
|
216
89
|
exports.default = appTheme;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import React, { FC } from "react";
|
|
2
|
-
import { BottomSheetMethods } from "@gorhom/bottom-sheet/lib/typescript/types";
|
|
3
|
-
interface PostOptionSheetProps {
|
|
4
|
-
sheetRef: React.RefObject<BottomSheetMethods>;
|
|
5
|
-
onClose: () => void;
|
|
6
|
-
}
|
|
7
|
-
declare const PostOptionSheet: FC<PostOptionSheetProps>;
|
|
8
|
-
export default PostOptionSheet;
|
|
File without changes
|
|
@@ -111,132 +111,6 @@ export declare const FONTS: {
|
|
|
111
111
|
fontWeight: string;
|
|
112
112
|
};
|
|
113
113
|
};
|
|
114
|
-
export declare const IMAGES: {
|
|
115
|
-
logo: any;
|
|
116
|
-
logo2: any;
|
|
117
|
-
email: any;
|
|
118
|
-
lock: any;
|
|
119
|
-
eyeopen: any;
|
|
120
|
-
eyeclose: any;
|
|
121
|
-
google: any;
|
|
122
|
-
usename: any;
|
|
123
|
-
home: any;
|
|
124
|
-
search: any;
|
|
125
|
-
reels: any;
|
|
126
|
-
chat: any;
|
|
127
|
-
chat2: any;
|
|
128
|
-
comment: any;
|
|
129
|
-
like: any;
|
|
130
|
-
like2: any;
|
|
131
|
-
bell: any;
|
|
132
|
-
more: any;
|
|
133
|
-
plus: any;
|
|
134
|
-
save: any;
|
|
135
|
-
save2: any;
|
|
136
|
-
share: any;
|
|
137
|
-
share2: any;
|
|
138
|
-
profile: any;
|
|
139
|
-
profile2: any;
|
|
140
|
-
profilepic1: any;
|
|
141
|
-
profilepic2: any;
|
|
142
|
-
profilepic3: any;
|
|
143
|
-
profilepic4: any;
|
|
144
|
-
profilepic5: any;
|
|
145
|
-
profilepic6: any;
|
|
146
|
-
profilepic7: any;
|
|
147
|
-
profilepic8: any;
|
|
148
|
-
profilepic9: any;
|
|
149
|
-
profilepic10: any;
|
|
150
|
-
profilepic11: any;
|
|
151
|
-
profilepic12: any;
|
|
152
|
-
profilepic13: any;
|
|
153
|
-
profilepic14: any;
|
|
154
|
-
profilepic15: any;
|
|
155
|
-
profilepic16: any;
|
|
156
|
-
profilepic17: any;
|
|
157
|
-
profilepic18: any;
|
|
158
|
-
profilepic19: any;
|
|
159
|
-
profilepic20: any;
|
|
160
|
-
profilepic21: any;
|
|
161
|
-
profilepic22: any;
|
|
162
|
-
camera: any;
|
|
163
|
-
components: any;
|
|
164
|
-
storypic1: any;
|
|
165
|
-
storypic2: any;
|
|
166
|
-
storypic3: any;
|
|
167
|
-
storypic4: any;
|
|
168
|
-
storypic5: any;
|
|
169
|
-
storypic6: any;
|
|
170
|
-
storypic7: any;
|
|
171
|
-
storypic8: any;
|
|
172
|
-
storypic9: any;
|
|
173
|
-
storypic10: any;
|
|
174
|
-
storypic11: any;
|
|
175
|
-
storypic12: any;
|
|
176
|
-
storypic13: any;
|
|
177
|
-
storypic14: any;
|
|
178
|
-
storypic15: any;
|
|
179
|
-
arrowleft: any;
|
|
180
|
-
happy: any;
|
|
181
|
-
send: any;
|
|
182
|
-
downarrow: any;
|
|
183
|
-
rigtharrow: any;
|
|
184
|
-
verified: any;
|
|
185
|
-
about: any;
|
|
186
|
-
theme: any;
|
|
187
|
-
logout: any;
|
|
188
|
-
login: any;
|
|
189
|
-
user: any;
|
|
190
|
-
pin: any;
|
|
191
|
-
info: any;
|
|
192
|
-
close: any;
|
|
193
|
-
downaeeowsmall: any;
|
|
194
|
-
close2: any;
|
|
195
|
-
copylink: any;
|
|
196
|
-
write: any;
|
|
197
|
-
write2: any;
|
|
198
|
-
call: any;
|
|
199
|
-
video: any;
|
|
200
|
-
videocall: any;
|
|
201
|
-
videocall2: any;
|
|
202
|
-
phone: any;
|
|
203
|
-
audio: any;
|
|
204
|
-
audiomute: any;
|
|
205
|
-
volume: any;
|
|
206
|
-
zoom: any;
|
|
207
|
-
block: any;
|
|
208
|
-
delete: any;
|
|
209
|
-
cricle: any;
|
|
210
|
-
music: any;
|
|
211
|
-
profilebackground: any;
|
|
212
|
-
setting: any;
|
|
213
|
-
profilepic: any;
|
|
214
|
-
musicpic: any;
|
|
215
|
-
play: any;
|
|
216
|
-
pause: any;
|
|
217
|
-
volumemute: any;
|
|
218
|
-
check: any;
|
|
219
|
-
text: any;
|
|
220
|
-
sticker: any;
|
|
221
|
-
effect: any;
|
|
222
|
-
smallpic1: any;
|
|
223
|
-
smallpic2: any;
|
|
224
|
-
smallpic3: any;
|
|
225
|
-
smallpic4: any;
|
|
226
|
-
smallpic5: any;
|
|
227
|
-
smallpic6: any;
|
|
228
|
-
smallpic7: any;
|
|
229
|
-
smallpic8: any;
|
|
230
|
-
smallpic9: any;
|
|
231
|
-
smallpic10: any;
|
|
232
|
-
smallpic11: any;
|
|
233
|
-
};
|
|
234
|
-
export declare const VIDEO: {
|
|
235
|
-
video1: any;
|
|
236
|
-
video2: any;
|
|
237
|
-
video3: any;
|
|
238
|
-
video4: any;
|
|
239
|
-
};
|
|
240
114
|
declare const appTheme: {
|
|
241
115
|
COLORS: {
|
|
242
116
|
primary: string;
|
|
@@ -351,131 +225,5 @@ declare const appTheme: {
|
|
|
351
225
|
fontWeight: string;
|
|
352
226
|
};
|
|
353
227
|
};
|
|
354
|
-
IMAGES: {
|
|
355
|
-
logo: any;
|
|
356
|
-
logo2: any;
|
|
357
|
-
email: any;
|
|
358
|
-
lock: any;
|
|
359
|
-
eyeopen: any;
|
|
360
|
-
eyeclose: any;
|
|
361
|
-
google: any;
|
|
362
|
-
usename: any;
|
|
363
|
-
home: any;
|
|
364
|
-
search: any;
|
|
365
|
-
reels: any;
|
|
366
|
-
chat: any;
|
|
367
|
-
chat2: any;
|
|
368
|
-
comment: any;
|
|
369
|
-
like: any;
|
|
370
|
-
like2: any;
|
|
371
|
-
bell: any;
|
|
372
|
-
more: any;
|
|
373
|
-
plus: any;
|
|
374
|
-
save: any;
|
|
375
|
-
save2: any;
|
|
376
|
-
share: any;
|
|
377
|
-
share2: any;
|
|
378
|
-
profile: any;
|
|
379
|
-
profile2: any;
|
|
380
|
-
profilepic1: any;
|
|
381
|
-
profilepic2: any;
|
|
382
|
-
profilepic3: any;
|
|
383
|
-
profilepic4: any;
|
|
384
|
-
profilepic5: any;
|
|
385
|
-
profilepic6: any;
|
|
386
|
-
profilepic7: any;
|
|
387
|
-
profilepic8: any;
|
|
388
|
-
profilepic9: any;
|
|
389
|
-
profilepic10: any;
|
|
390
|
-
profilepic11: any;
|
|
391
|
-
profilepic12: any;
|
|
392
|
-
profilepic13: any;
|
|
393
|
-
profilepic14: any;
|
|
394
|
-
profilepic15: any;
|
|
395
|
-
profilepic16: any;
|
|
396
|
-
profilepic17: any;
|
|
397
|
-
profilepic18: any;
|
|
398
|
-
profilepic19: any;
|
|
399
|
-
profilepic20: any;
|
|
400
|
-
profilepic21: any;
|
|
401
|
-
profilepic22: any;
|
|
402
|
-
camera: any;
|
|
403
|
-
components: any;
|
|
404
|
-
storypic1: any;
|
|
405
|
-
storypic2: any;
|
|
406
|
-
storypic3: any;
|
|
407
|
-
storypic4: any;
|
|
408
|
-
storypic5: any;
|
|
409
|
-
storypic6: any;
|
|
410
|
-
storypic7: any;
|
|
411
|
-
storypic8: any;
|
|
412
|
-
storypic9: any;
|
|
413
|
-
storypic10: any;
|
|
414
|
-
storypic11: any;
|
|
415
|
-
storypic12: any;
|
|
416
|
-
storypic13: any;
|
|
417
|
-
storypic14: any;
|
|
418
|
-
storypic15: any;
|
|
419
|
-
arrowleft: any;
|
|
420
|
-
happy: any;
|
|
421
|
-
send: any;
|
|
422
|
-
downarrow: any;
|
|
423
|
-
rigtharrow: any;
|
|
424
|
-
verified: any;
|
|
425
|
-
about: any;
|
|
426
|
-
theme: any;
|
|
427
|
-
logout: any;
|
|
428
|
-
login: any;
|
|
429
|
-
user: any;
|
|
430
|
-
pin: any;
|
|
431
|
-
info: any;
|
|
432
|
-
close: any;
|
|
433
|
-
downaeeowsmall: any;
|
|
434
|
-
close2: any;
|
|
435
|
-
copylink: any;
|
|
436
|
-
write: any;
|
|
437
|
-
write2: any;
|
|
438
|
-
call: any;
|
|
439
|
-
video: any;
|
|
440
|
-
videocall: any;
|
|
441
|
-
videocall2: any;
|
|
442
|
-
phone: any;
|
|
443
|
-
audio: any;
|
|
444
|
-
audiomute: any;
|
|
445
|
-
volume: any;
|
|
446
|
-
zoom: any;
|
|
447
|
-
block: any;
|
|
448
|
-
delete: any;
|
|
449
|
-
cricle: any;
|
|
450
|
-
music: any;
|
|
451
|
-
profilebackground: any;
|
|
452
|
-
setting: any;
|
|
453
|
-
profilepic: any;
|
|
454
|
-
musicpic: any;
|
|
455
|
-
play: any;
|
|
456
|
-
pause: any;
|
|
457
|
-
volumemute: any;
|
|
458
|
-
check: any;
|
|
459
|
-
text: any;
|
|
460
|
-
sticker: any;
|
|
461
|
-
effect: any;
|
|
462
|
-
smallpic1: any;
|
|
463
|
-
smallpic2: any;
|
|
464
|
-
smallpic3: any;
|
|
465
|
-
smallpic4: any;
|
|
466
|
-
smallpic5: any;
|
|
467
|
-
smallpic6: any;
|
|
468
|
-
smallpic7: any;
|
|
469
|
-
smallpic8: any;
|
|
470
|
-
smallpic9: any;
|
|
471
|
-
smallpic10: any;
|
|
472
|
-
smallpic11: any;
|
|
473
|
-
};
|
|
474
|
-
VIDEO: {
|
|
475
|
-
video1: any;
|
|
476
|
-
video2: any;
|
|
477
|
-
video3: any;
|
|
478
|
-
video4: any;
|
|
479
|
-
};
|
|
480
228
|
};
|
|
481
229
|
export default appTheme;
|