mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-11-21 20:41:16 -05:00
Making TabNav FontSize Bigger (theres literally ZERO DOCUMENTATION)
This commit is contained in:
parent
b04ed35c6d
commit
46f9cad1c2
13
app/App.js
13
app/App.js
|
@ -38,9 +38,12 @@ const Tab = createBottomTabNavigator();
|
|||
class App extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<NavigationContainer>
|
||||
<Tab.Navigator>
|
||||
<Tab.Screen name="Home" component={Home} />
|
||||
<NavigationContainer >
|
||||
<Tab.Navigator tabBarOptions={{
|
||||
labelStyle:{
|
||||
fontSize:20
|
||||
}}}>
|
||||
<Tab.Screen name="Home" component={Home} style={{fontSize:30}} />
|
||||
<Tab.Screen name="Calendar" component={Calendar} />
|
||||
<Tab.Screen name="Polls" component={Poll} />
|
||||
<Tab.Screen name="Clubs" component={Clubs} />
|
||||
|
@ -51,4 +54,8 @@ class App extends React.Component {
|
|||
}
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
|
||||
}
|
||||
);
|
||||
export default App;
|
||||
|
|
Loading…
Reference in New Issue
Block a user