1shadowColor: "#000",
2shadowOffset: {
3 width: 0,
4 height: 7,
5},
6shadowOpacity: 0.43,
7shadowRadius: 25,
8
9elevation: 15,
1<View
2 style={{
3 flexGrow: 1,
4 backgroundColor: Colors.white,
5 borderTopLeftRadius: 40,
6 borderTopRightRadius: 40,
7 }}
8>
9 <View
10 style={[
11 Theme.center,
12 Theme.dropShadow,
13 {
14 top: -100,
15 width: 190,
16 height: 190,
17 borderRadius: 190 / 2,
18 backgroundColor: Colors.white,
19 },
20 ]}
21 >
22 <Image
23 source={require("../../assets/resto/chef_jude.png")}
24 style={[
25 {
26 width: 180,
27 height: 180,
28 borderRadius: 180 / 2,
29 },
30 ]}
31 />
32 </View>
33 </View>