react-native-macos/RNTester/js/ImageCapInsetsExample.js

84 строки
1.9 KiB
JavaScript
Исходник Обычный вид История

2015-01-30 04:10:49 +03:00
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
2015-01-30 04:10:49 +03:00
* @providesModule ImageCapInsetsExample
2015-03-25 05:34:12 +03:00
* @flow
2015-01-30 04:10:49 +03:00
*/
'use strict';
var React = require('react');
var ReactNative = require('react-native');
var nativeImageSource = require('nativeImageSource');
2015-01-30 04:10:49 +03:00
var {
Image,
StyleSheet,
Text,
View,
} = ReactNative;
2015-01-30 04:10:49 +03:00
class ImageCapInsetsExample extends React.Component {
render() {
2015-01-30 04:10:49 +03:00
return (
<View>
<View style={styles.background}>
<Text>
capInsets: none
</Text>
<Image
source={nativeImageSource({
ios: 'story-background',
width: 60,
height: 60
})}
2015-01-30 04:10:49 +03:00
style={styles.storyBackground}
resizeMode={Image.resizeMode.stretch}
2015-01-30 04:10:49 +03:00
capInsets={{left: 0, right: 0, bottom: 0, top: 0}}
/>
</View>
<View style={[styles.background, {paddingTop: 10}]}>
<Text>
capInsets: 15
</Text>
<Image
source={nativeImageSource({
ios: 'story-background',
width: 60,
height: 60
})}
2015-01-30 04:10:49 +03:00
style={styles.storyBackground}
resizeMode={Image.resizeMode.stretch}
2015-01-30 04:10:49 +03:00
capInsets={{left: 15, right: 15, bottom: 15, top: 15}}
/>
</View>
</View>
);
}
}
2015-01-30 04:10:49 +03:00
var styles = StyleSheet.create({
background: {
backgroundColor: '#F6F6F6',
justifyContent: 'center',
alignItems: 'center',
},
horizontal: {
flexDirection: 'row',
},
storyBackground: {
width: 250,
height: 150,
borderWidth: 1,
},
text: {
fontSize: 13.5,
}
});
module.exports = ImageCapInsetsExample;