-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
157 lines (146 loc) · 3.93 KB
/
App.js
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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import React, {Component} from 'react';
import {
View,
Text,
StyleSheet,
Image,
ScrollView,
} from 'react-native';
import Button from 'react-native-button';
import {
Card,
CardTitle,
CardImage,
CardContent,
CardAction
} from 'react-native-card-view';
export default class CardExample extends Component {
_renderTitle (title) {
return (
<View style={{flex: 1, alignItems: 'center', marginTop: 20}}>
<Text style={{fontSize: 20}}>{title}</Text>
</View>
)
}
render () {
return (
<ScrollView>
<View style={styles.container}>
{this._renderTitle('Basic')}
<Card>
<CardTitle>
<Text style={styles.title}>Card Title</Text>
</CardTitle>
<CardContent>
<Text>Content</Text>
</CardContent>
<CardAction >
<Button
style={styles.button}
onPress={() => {}}>
Button 1
</Button>
<Button
style={styles.button}
onPress={() => {}}>
Button 2
</Button>
</CardAction>
</Card>
{this._renderTitle('Fix Width = 300')}
<Card styles={{card: {width: 300}}}>
<CardTitle>
<Text style={styles.title}>Card Title</Text>
</CardTitle>
<CardContent>
<Text>Content</Text>
</CardContent>
<CardAction >
<Button
style={styles.button}
onPress={() => {}}>
Button 1
</Button>
<Button
style={styles.button}
onPress={() => {}}>
Button 2
</Button>
</CardAction>
</Card>
{this._renderTitle('Card Image + Card Title + Card Content + Card Action')}
<Card>
<CardImage>
<Image
style={{width: 300, height: 200}}
source={{uri: 'https://getmdl.io/assets/demos/image_card.jpg'}}
/>
</CardImage>
<CardTitle>
<Text style={styles.title}>Card Title</Text>
</CardTitle>
<CardContent>
<Text>Content</Text>
<Text>Content</Text>
<Text>Content</Text>
<Text>Content</Text>
<Text>Content</Text>
<Text>Content</Text>
</CardContent>
<CardAction separator>
<Button
style={styles.button}
onPress={() => {}}>
Button 1
</Button>
<Button
style={styles.button}
styleDisabled={{color: 'red'}}
onPress={() => {}} >
Button 2
</Button>
</CardAction>
</Card>
{this._renderTitle('Card Image')}
<Card>
<CardImage>
<Image
style={{width: 256, height: 256}}
source={{uri: 'https://getmdl.io/assets/demos/image_card.jpg'}}
>
<Text style={[styles.title, {alignSelf: 'center'}]}>Beautiful Girl</Text>
</Image>
</CardImage>
</Card>
{this._renderTitle('Card Image')}
<Card>
<CardImage>
<Image
style={{width: 256, height: 256}}
source={{uri: 'https://static.pexels.com/photos/59523/pexels-photo-59523.jpeg'}}
/>
</CardImage>
</Card>
</View>
</ScrollView>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
marginTop: 60,
marginBottom: 60,
backgroundColor: '#f5f5f5',
},
title: {
fontSize: 38,
backgroundColor: 'transparent'
},
button: {
marginRight: 10
},
card: {
width: 300
}
});