File tree Expand file tree Collapse file tree 6 files changed +10
-7
lines changed Expand file tree Collapse file tree 6 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ var styles = StyleSheet.create({
94
94
} ) ;
95
95
96
96
exports . title = 'Border' ;
97
- exports . description = 'View borders ' ;
97
+ exports . description = 'Demonstrates some of the border styles available to Views. ' ;
98
98
exports . examples = [
99
99
{
100
100
title : 'Equal-Width / Same-Color' ,
Original file line number Diff line number Diff line change @@ -141,7 +141,8 @@ var styles = StyleSheet.create({
141
141
} ) ;
142
142
143
143
exports . title = 'Layout Events' ;
144
- exports . description = 'Layout events can be used to measure view size and position.' ;
144
+ exports . description = 'Examples that show how Layout events can be used to ' +
145
+ 'measure view size and position.' ;
145
146
exports . examples = [
146
147
{
147
148
title : 'LayoutEventExample' ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ var PanResponderExample = React.createClass({
31
31
32
32
statics : {
33
33
title : 'PanResponder Sample' ,
34
- description : 'Basic gesture handling example ' ,
34
+ description : 'Shows the use of PanResponder to provide basic gesture handling. ' ,
35
35
} ,
36
36
37
37
_panResponder : { } ,
Original file line number Diff line number Diff line change @@ -250,6 +250,6 @@ var styles = StyleSheet.create({
250
250
251
251
exports . framework = 'React' ;
252
252
exports . title = 'Pointer Events' ;
253
- exports . description = '`pointerEvents` is a prop of View that gives control ' +
254
- 'of how touches should be handled.' ;
253
+ exports . description = 'Demonstrates the use of the pointerEvents prop of a ' +
254
+ 'View to control how touches should be handled.' ;
255
255
exports . examples = exampleClasses . map ( infoToExample ) ;
Original file line number Diff line number Diff line change 27
27
} = React ;
28
28
29
29
exports . displayName = ( undefined : ?string ) ;
30
- exports . description = 'Touchable and onPress examples' ;
30
+ exports . description = 'Touchable and onPress examples. ' ;
31
31
exports . title = '<Touchable*> and onPress' ;
32
32
exports . examples = [
33
33
{
Original file line number Diff line number Diff line change @@ -85,7 +85,9 @@ var ViewBorderStyleExample = React.createClass({
85
85
} ) ;
86
86
87
87
exports . title = '<View>' ;
88
- exports . description = 'Basic building block of all UI.' ;
88
+ exports . description = 'Basic building block of all UI, examples that ' +
89
+ 'demonstrate some of the many styles available.' ;
90
+
89
91
exports . displayName = 'ViewExample' ;
90
92
exports . examples = [
91
93
{
You can’t perform that action at this time.
0 commit comments