From 6bd83cc2a93292647882b1ab75e78ca2fe980a0a Mon Sep 17 00:00:00 2001 From: Fadil Sutomo Date: Sun, 17 Jul 2016 14:57:40 +0700 Subject: [PATCH] Add examples with custom size number usage --- .../UIExplorer/js/ActivityIndicatorExample.js | 28 +++++++++++++++++-- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/Examples/UIExplorer/js/ActivityIndicatorExample.js b/Examples/UIExplorer/js/ActivityIndicatorExample.js index 4832b1d0eb1958..76f23429b92a5f 100644 --- a/Examples/UIExplorer/js/ActivityIndicatorExample.js +++ b/Examples/UIExplorer/js/ActivityIndicatorExample.js @@ -113,8 +113,8 @@ exports.examples = [ return ( ); } @@ -151,12 +151,34 @@ exports.examples = [ } }, { - title: 'Custom size', + title: 'Custom size (size: 48)', + render() { + return ( + + ); + } + }, + { + title: 'Custom size (size: 56)', + render() { + return ( + + ); + } + }, + { + title: 'Custom size (size: 30, scale transform: 1.5)', render() { return ( ); }