From 3a500f4a94af209fc3f1a9f26cdb706b04422fc1 Mon Sep 17 00:00:00 2001 From: konchanSS Date: Fri, 9 Feb 2018 15:44:26 +0900 Subject: [PATCH] Using Scroll View lesson 1 --- App.js | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/App.js b/App.js index 224d7db..661fcb6 100644 --- a/App.js +++ b/App.js @@ -1,16 +1,19 @@ import React, { Component } from 'react'; -import { AppRegistry, Text, View } from 'react-native'; +import { AppRegistry, ScrollView,Image, Text } from 'react-native'; -export default class App extends Component { +export default class IScrolledDownAndWhatHappenedNextShockedMe extends Component { render() { return ( - - Open up App.js to start working on your app! - Changes you make will automatically reload. - Shake your phone to open the developer menu. - + + Scroll me plz + If you like + Scrolling down + What's the best + Framework around? + React Native + ); } } -AppRegistry.registerComponent('react-native-tutorial', () => App); +AppRegistry.registerComponent('react-native-tutorial', () => IScrolledDownAndWhatHappenedNextShockedMe);