Answers for "react native full height widht"

0

Get React Native View width and height

import React from 'react'
import { View } from 'react-native'

export default function index() {
  const onLayout=(event)=> {
    const {x, y, height, width} = event.nativeEvent.layout;
    
  }
  return (
    <View onLayout={onLayout}>
      <OtherComponent />
    </View>
  )
}
Posted by: Guest on November-27-2021
0

react native height full

flex:1,
Posted by: Guest on August-19-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language