mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
8553e1acc4
Summary: We are rolling out exact-by-default syntax to xplat/js. I had to manually move around some comments to preserve proper placement. Changelog: [Internal] Reviewed By: jbrown215 Differential Revision: D18633611 fbshipit-source-id: 48f7468dcc55b1d00985419d035a61c6820b3abe
77 lines
2.2 KiB
JavaScript
77 lines
2.2 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const React = require('react');
|
|
const TouchableBounce = require('react-native/Libraries/Components/Touchable/TouchableBounce');
|
|
|
|
const {
|
|
Image,
|
|
StyleSheet,
|
|
Text,
|
|
TextInput,
|
|
TouchableHighlight,
|
|
TouchableOpacity,
|
|
TouchableWithoutFeedback,
|
|
View,
|
|
} = require('react-native');
|
|
|
|
/**
|
|
* All the views implemented on Android, each with the nativeID property set.
|
|
* We test that:
|
|
* - The app renders fine
|
|
* - The nativeID property is passed to the native views
|
|
*/
|
|
class NativeIdTestApp extends React.Component<{...}> {
|
|
render(): React.Node {
|
|
const uri =
|
|
'data:image/gif;base64,' +
|
|
'R0lGODdhMAAwAPAAAAAAAP///ywAAAAAMAAwAAAC8IyPqcvt3wCcDkiLc7C0qwyGHhSWpjQu5yqmCYsapy' +
|
|
'uvUUlvONmOZtfzgFzByTB10QgxOR0TqBQejhRNzOfkVJ+5YiUqrXF5Y5lKh/DeuNcP5yLWGsEbtLiOSpa/' +
|
|
'TPg7JpJHxyendzWTBfX0cxOnKPjgBzi4diinWGdkF8kjdfnycQZXZeYGejmJlZeGl9i2icVqaNVailT6F5' +
|
|
'iJ90m6mvuTS4OK05M0vDk0Q4XUtwvKOzrcd3iq9uisF81M1OIcR7lEewwcLp7tuNNkM3uNna3F2JQFo97V' +
|
|
'riy/Xl4/f1cf5VWzXyym7PHhhx4dbgYKAAA7';
|
|
return (
|
|
<View>
|
|
<Image nativeID="Image" source={{uri: uri}} style={styles.base} />
|
|
<Text nativeID="Text">text</Text>
|
|
<TextInput nativeID="TextInput" value="Text input" />
|
|
<TouchableBounce nativeID="TouchableBounce">
|
|
<Text>TouchableBounce</Text>
|
|
</TouchableBounce>
|
|
<TouchableHighlight nativeID="TouchableHighlight">
|
|
<Text>TouchableHighlight</Text>
|
|
</TouchableHighlight>
|
|
<TouchableOpacity nativeID="TouchableOpacity">
|
|
<Text>TouchableOpacity</Text>
|
|
</TouchableOpacity>
|
|
<TouchableWithoutFeedback nativeID="TouchableWithoutFeedback">
|
|
<View>
|
|
<Text>TouchableWithoutFeedback</Text>
|
|
</View>
|
|
</TouchableWithoutFeedback>
|
|
<View nativeID="View" />
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
base: {
|
|
width: 150,
|
|
height: 50,
|
|
},
|
|
});
|
|
|
|
module.exports = {
|
|
NativeIdTestApp: NativeIdTestApp,
|
|
};
|