-
Notifications
You must be signed in to change notification settings - Fork 0
/
Footers.js
43 lines (38 loc) · 1.07 KB
/
Footers.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import React,{Component} from 'react';
import {Footer,FooterTab,Button,Right,Left,Body,Icon} from 'native-base';
import { StyleSheet,Text } from 'react-native';
const Footers=()=>{
return(
<Footer>
<FooterTab style={{backgroundColor:'#fff',borderColor:'grey',borderTopWidth:1}}>
<Left>
<Button transparent style={{backgroundColor:'#fff',width:50}}>
<Text style={styles.style} active>All</Text>
</Button >
</Left>
<Button transparent style={{backgroundColor:'#fff',height:40,width:50,marginRight:150}}>
<Text style={styles.size}>Mentions</Text>
</Button>
<Right>
<Button transparent info style={{marginRight:5}}>
<Icon style={{color:'#007aff'}} name="ios-settings-outline" />
</Button>
</Right>
</FooterTab>
</Footer>
);
};
const styles =StyleSheet.create({
style: {
fontWeight:'bold',
marginLeft:20,
fontSize: 20,
color: '#007aff'
},
size:{
fontWeight:'bold',
fontSize: 20,
color: 'grey'
}
});
export default Footers;