We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba69044 commit 1d7c3beCopy full SHA for 1d7c3be
Examples/UIExplorer/js/ActivityIndicatorExample.js
@@ -151,12 +151,34 @@ exports.examples = [
151
}
152
},
153
{
154
- title: 'Custom size',
+ title: 'Custom size (size: 48)',
155
+ render() {
156
+ return (
157
+ <ActivityIndicator
158
+ style={styles.centering}
159
+ size={48}
160
+ />
161
+ );
162
+ }
163
+ },
164
+ {
165
+ title: 'Custom size (size: 56)',
166
167
168
169
170
+ size={56}
171
172
173
174
175
176
+ title: 'Custom size (size: 30, scale transform: 1.5)',
177
render() {
178
return (
179
<ActivityIndicator
180
style={[styles.centering, {transform: [{scale: 1.5}]}]}
- size="large"
181
+ size={30}
182
/>
183
);
184
0 commit comments