Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React, {Component} from 'react';
  2. import {Text, View } from 'react-native';
  3.  
  4.  
  5. export default class PrimeiroProjeto extends Component {
  6.   render() {
  7.  
  8.     return (
  9.       <View style={{flex:1, backgroundColor:'black'}}>
  10.          <View style={{flex:1, backgroundColor:'blue'}}></View>
  11.           <View style={{flex:8, backgroundColor:'green'}}></View>
  12.          <View style={{flex:1, backgroundColor:'yellow'}}></View>
  13.       </View>
  14.     );
  15.   }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement