Newer
Older
1
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
import React from "react";
import { StyleSheet, Text, View } from "react-native";
export default function Review() {
return (
<View style={styles.container}>
<View style={styles.reviewContainer}>
<Text style={styles.title}>reviews</Text>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#F5F8FF",
alignItems: "center",
justifyContent: "center",
},
reviewContainer: {
backgroundColor: "#FFFFFF",
borderRadius: 10,
paddingHorizontal: 30,
paddingVertical: 40,
minWidth: "80%",
shadowOffset: { width: 0, height: 5 },
shadowOpacity: 1.0,
shadowRadius: 2,
shadowColor: "rgba(193, 211, 251, 0.5)",
elevation: 5,
},
title: {
fontWeight: "bold",
fontSize: 20,
color: "#323357",
textAlign: "center",
},
});