From e8155c94dd5cc81565f62ecfd2c05819b9458444 Mon Sep 17 00:00:00 2001 From: Christopher Chedeau Date: Tue, 31 Mar 2015 20:26:29 -0700 Subject: [PATCH] [ReactNative] Normalize name for examples --- ...atorExample.js => ActivityIndicatorIOSExample.js} | 0 ...{DatePickerExample.js => DatePickerIOSExample.js} | 0 .../{ListViewSimpleExample.js => ListViewExample.js} | 0 Examples/UIExplorer/ListViewPagingExample.js | 1 - .../{PickerExample.js => PickerIOSExample.js} | 0 .../{SwitchExample.js => SwitchIOSExample.js} | 0 .../{TabBarExample.js => TabBarIOSExample.js} | 0 Examples/UIExplorer/UIExplorerList.js | 12 ++++++------ 8 files changed, 6 insertions(+), 7 deletions(-) rename Examples/UIExplorer/{ActivityIndicatorExample.js => ActivityIndicatorIOSExample.js} (100%) rename Examples/UIExplorer/{DatePickerExample.js => DatePickerIOSExample.js} (100%) rename Examples/UIExplorer/{ListViewSimpleExample.js => ListViewExample.js} (100%) rename Examples/UIExplorer/{PickerExample.js => PickerIOSExample.js} (100%) rename Examples/UIExplorer/{SwitchExample.js => SwitchIOSExample.js} (100%) rename Examples/UIExplorer/{TabBarExample.js => TabBarIOSExample.js} (100%) diff --git a/Examples/UIExplorer/ActivityIndicatorExample.js b/Examples/UIExplorer/ActivityIndicatorIOSExample.js similarity index 100% rename from Examples/UIExplorer/ActivityIndicatorExample.js rename to Examples/UIExplorer/ActivityIndicatorIOSExample.js diff --git a/Examples/UIExplorer/DatePickerExample.js b/Examples/UIExplorer/DatePickerIOSExample.js similarity index 100% rename from Examples/UIExplorer/DatePickerExample.js rename to Examples/UIExplorer/DatePickerIOSExample.js diff --git a/Examples/UIExplorer/ListViewSimpleExample.js b/Examples/UIExplorer/ListViewExample.js similarity index 100% rename from Examples/UIExplorer/ListViewSimpleExample.js rename to Examples/UIExplorer/ListViewExample.js diff --git a/Examples/UIExplorer/ListViewPagingExample.js b/Examples/UIExplorer/ListViewPagingExample.js index 36cc82d86..7fdf89665 100644 --- a/Examples/UIExplorer/ListViewPagingExample.js +++ b/Examples/UIExplorer/ListViewPagingExample.js @@ -11,7 +11,6 @@ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * - * @providesModule ListViewPagingExample * @flow */ 'use strict'; diff --git a/Examples/UIExplorer/PickerExample.js b/Examples/UIExplorer/PickerIOSExample.js similarity index 100% rename from Examples/UIExplorer/PickerExample.js rename to Examples/UIExplorer/PickerIOSExample.js diff --git a/Examples/UIExplorer/SwitchExample.js b/Examples/UIExplorer/SwitchIOSExample.js similarity index 100% rename from Examples/UIExplorer/SwitchExample.js rename to Examples/UIExplorer/SwitchIOSExample.js diff --git a/Examples/UIExplorer/TabBarExample.js b/Examples/UIExplorer/TabBarIOSExample.js similarity index 100% rename from Examples/UIExplorer/TabBarExample.js rename to Examples/UIExplorer/TabBarIOSExample.js diff --git a/Examples/UIExplorer/UIExplorerList.js b/Examples/UIExplorer/UIExplorerList.js index d2f4d6f0c..cee61af87 100644 --- a/Examples/UIExplorer/UIExplorerList.js +++ b/Examples/UIExplorer/UIExplorerList.js @@ -33,19 +33,19 @@ var { TestModule } = React.addons; var createExamplePage = require('./createExamplePage'); var COMPONENTS = [ - require('./ActivityIndicatorExample'), - require('./DatePickerExample'), + require('./ActivityIndicatorIOSExample'), + require('./DatePickerIOSExample'), require('./ImageExample'), + require('./ListViewExample'), require('./ListViewPagingExample'), - require('./ListViewSimpleExample'), require('./MapViewExample'), require('./NavigatorIOSExample'), NavigatorExample, - require('./PickerExample'), + require('./PickerIOSExample'), require('./ScrollViewExample'), require('./SliderIOSExample'), - require('./SwitchExample'), - require('./TabBarExample'), + require('./SwitchIOSExample'), + require('./TabBarIOSExample'), require('./TextExample.ios'), require('./TextInputExample'), require('./TouchableExample'),