ReactNative全屏背景图片

What's the best way to add a full screen background image in React Native

class ReactStrap extends React.Component {
  render() {
    return (
      
        ... Your Content ...
      
    );
  }
}

var styles = StyleSheet.create({
  container: {
    flex: 1,
    // remove width and height to override fixed static size
    width: null,
    height: null,
  }
};

你可能感兴趣的:(ReactNative全屏背景图片)