Sök…


Redigering av index.ios.js eller index.android.js

Öppna index.ios.js eller index.android.js och ta bort allt mellan <View> </View> . Skriv sedan <Text> Hello World! </Text> och kör emulatorn.

Du borde se Hello World! skrivet på skärmen!

grattis! Du har framgångsrikt skrivit din första Hello World!

Hej världen!

import React, { Component } from 'react';
import { AppRegistry, Text } from 'react-native';

class HelloWorldApp extends Component {
  render() {
    return (
      <Text>Hello world!</Text>
    );
  }
}

AppRegistry.registerComponent('HelloWorldApp', () => HelloWorldApp);


Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow