Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 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 Footer = (props) => {
  5. return (
  6. <View style={styles.vFooter}>
  7. <Text style={styles.txtFooter}>@2019 AGUSWAHYU.COM</Text>
  8. </View>
  9. );
  10. }
  11.  
  12. const styles = StyleSheet.create({
  13. vFooter:
  14. {
  15. //flex:1,
  16. height:50,
  17. borderWidth:1,
  18. backgroundColor:'#021aee',
  19. alignItems:'center',
  20. justifyContent:'center'
  21. },
  22. txtFooter:
  23. {
  24. fontWeight: "bold",
  25. color:'white',
  26. },
  27. });
  28. export default Footer;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement