2015-07-21 12:39:57 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-07-12 12:51:57 +00:00
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-07-12 12:51:57 +00:00
|
|
|
*
|
2018-05-11 20:32:37 +00:00
|
|
|
* @format
|
2018-08-09 15:32:04 +00:00
|
|
|
* @flow strict-local
|
2015-07-21 12:39:57 +00:00
|
|
|
*/
|
2018-05-11 20:32:37 +00:00
|
|
|
|
2015-07-21 12:39:57 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-04-09 03:36:40 +00:00
|
|
|
var React = require('react');
|
|
|
|
var ReactNative = require('react-native');
|
2018-05-11 20:32:37 +00:00
|
|
|
var {Image, StyleSheet, View, ScrollView} = ReactNative;
|
2015-07-21 12:39:57 +00:00
|
|
|
|
2018-05-11 20:32:37 +00:00
|
|
|
class AssetScaledImageExample extends React.Component<
|
|
|
|
$FlowFixMeProps,
|
|
|
|
$FlowFixMeState,
|
|
|
|
> {
|
2016-07-26 08:00:02 +00:00
|
|
|
state = {
|
2018-05-11 20:32:37 +00:00
|
|
|
asset: this.props.asset,
|
2016-07-26 08:00:02 +00:00
|
|
|
};
|
2015-07-21 12:39:57 +00:00
|
|
|
|
|
|
|
render() {
|
|
|
|
var image = this.state.asset.node.image;
|
|
|
|
return (
|
|
|
|
<ScrollView>
|
|
|
|
<View style={styles.row}>
|
2018-05-11 20:32:37 +00:00
|
|
|
<Image source={image} style={styles.imageWide} />
|
2015-07-21 12:39:57 +00:00
|
|
|
</View>
|
|
|
|
<View style={styles.row}>
|
2018-05-11 20:32:37 +00:00
|
|
|
<Image source={image} style={styles.imageThumb} />
|
|
|
|
<Image source={image} style={styles.imageThumb} />
|
|
|
|
<Image source={image} style={styles.imageThumb} />
|
2015-07-21 12:39:57 +00:00
|
|
|
</View>
|
|
|
|
<View style={styles.row}>
|
2018-05-11 20:32:37 +00:00
|
|
|
<Image source={image} style={styles.imageT1} />
|
|
|
|
<Image source={image} style={styles.imageT2} />
|
2015-07-21 12:39:57 +00:00
|
|
|
</View>
|
|
|
|
</ScrollView>
|
|
|
|
);
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-21 12:39:57 +00:00
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
row: {
|
|
|
|
padding: 5,
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignSelf: 'center',
|
|
|
|
},
|
|
|
|
textColumn: {
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'column',
|
|
|
|
},
|
|
|
|
imageWide: {
|
|
|
|
borderWidth: 1,
|
|
|
|
borderColor: 'black',
|
|
|
|
width: 320,
|
|
|
|
height: 240,
|
|
|
|
margin: 5,
|
|
|
|
},
|
|
|
|
imageThumb: {
|
|
|
|
borderWidth: 1,
|
|
|
|
borderColor: 'black',
|
|
|
|
width: 100,
|
|
|
|
height: 100,
|
|
|
|
margin: 5,
|
|
|
|
},
|
|
|
|
imageT1: {
|
|
|
|
borderWidth: 1,
|
|
|
|
borderColor: 'black',
|
|
|
|
width: 212,
|
|
|
|
height: 320,
|
|
|
|
margin: 5,
|
|
|
|
},
|
|
|
|
imageT2: {
|
|
|
|
borderWidth: 1,
|
|
|
|
borderColor: 'black',
|
|
|
|
width: 100,
|
|
|
|
height: 320,
|
|
|
|
margin: 5,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
exports.title = '<AssetScaledImageExample>';
|
2018-05-11 20:32:37 +00:00
|
|
|
exports.description =
|
|
|
|
'Example component that displays the automatic scaling capabilities of the <Image /> tag';
|
2015-07-21 12:39:57 +00:00
|
|
|
module.exports = AssetScaledImageExample;
|