Answers for "bottom a view in react native"

2

react native component at bottom center

bottomCenter: {
    flex: 1,
    justifyContent: 'flex-end',
    marginBottom: 30
}
Posted by: Guest on December-16-2020
0

react native bottom sheet above the bottom menu

//you will need to use BottomSheetModal and add its provider to the root component of you application


import { BottomSheetModalProvider } from '@gorhom/bottom-sheet'


const App = () => {
  return (
    <BottomSheetModalProvider>
      <Navigation /> // this is my app entry component (react-navigation Navigator), use yours
    </BottomSheetModalProvider>
  )
Posted by: Guest on September-06-2021

Code answers related to "bottom a view in react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language