Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Last active August 14, 2018 12:52
Show Gist options
  • Save isacjunior/072272b561896eb2bf3e1715daa91b52 to your computer and use it in GitHub Desktop.
Save isacjunior/072272b561896eb2bf3e1715daa91b52 to your computer and use it in GitHub Desktop.
// src/index.js
import React, { Component } from 'react'
import { StatusBar } from 'react-native'
import { BottomNavigator } from './components'
import { HomeContainer, SwiperContainer } from './styled'
class App extends Component {
render() {
return (
<HomeContainer>
// StatusBar aqui é adicionado com o estilo light para se destacar com o background escuro(roxo)
<StatusBar
barStyle="light-content"
/>
<SwiperContainer />
<BottomNavigator />
</HomeContainer>
)
}
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment