美文网首页
ReactNative全屏背景图片

ReactNative全屏背景图片

作者: TroyZhang | 来源:发表于2016-05-13 14:47 被阅读1113次

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

    class ReactStrap extends React.Component {
      render() {
        return (
          <Image source={require('image!background')} style={styles.container}>
            ... Your Content ...
          </Image>
        );
      }
    }
    
    var styles = StyleSheet.create({
      container: {
        flex: 1,
        // remove width and height to override fixed static size
        width: null,
        height: null,
      }
    };
    

    相关文章

      网友评论

          本文标题:ReactNative全屏背景图片

          本文链接:https://www.haomeiwen.com/subject/yvfmrttx.html