Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. import React, {Component} from 'react';
  2. import {Platform, StyleSheet, Text, View, TouchableHighlight,FlatList, TextInput} from 'react-native';
  3.  
  4. const Header = (props) => {
  5. return (
  6. <View style={{height:100, justifyContent:'center' ,alignItems:'center',backgroundColor: "blue"}}>
  7. <Text style={{fontSize:20, fontWeight:'bold', color:'#fff'}}>
  8. INVENTORY
  9. </Text>
  10. <Text style={{fontSize:16, fontWeight:'bold', color:'#fff'}}>
  11. STOK BARANG
  12. </Text>
  13. </View>
  14. );
  15. }
  16.  
  17. export default Header;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement