首页 > 其他 > 详细

[Flexbox] Use Flex to Scale Background Image

时间:2016-10-25 07:40:38      阅读:198      评论:0      收藏:0      [点我收藏+]

In this lesson we will use Flexbox to scale a background image to fit on the screen of our React Native application.

 

import React, { Component } from react;
import {AppRegistry, StyleSheet, Text, View, Image} from react-native;

export default class general extends Component {
  render() {
    return (
      <Image source={require("./cat.jpg")} style={styles.container}>
        <Text>A good looking cat</Text>
      </Image>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    width: null,
    height: null,
    alignItems: "center",
    justifyContent: "center"
  }
})

AppRegistry.registerComponent(general, () => general);

 

[Flexbox] Use Flex to Scale Background Image

原文:http://www.cnblogs.com/Answer1215/p/5995283.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!