Merge pull request #40 from react-native-community/feature/turn-off-ci-e2e-and-example-fix
Feature/turn off ci e2e and example fix
This commit is contained in:
commit
eb538ab3ba
|
@ -43,29 +43,29 @@ workflows:
|
|||
- analyze:
|
||||
requires:
|
||||
- checkout_code
|
||||
- rn/android_build:
|
||||
name: android_debug_build
|
||||
project_path: "example/android"
|
||||
build_type: debug
|
||||
requires:
|
||||
- analyze
|
||||
- rn/android_build:
|
||||
name: android_release_build
|
||||
project_path: "example/android"
|
||||
build_type: release
|
||||
requires:
|
||||
- analyze
|
||||
- rn/android_test:
|
||||
logcat_grep: "com.camerarollexample"
|
||||
detox_configuration: "android.emu.release"
|
||||
requires:
|
||||
- android_release_build
|
||||
- rn/ios_build_and_test:
|
||||
project_path: "example/ios/CameraRollExample.xcodeproj"
|
||||
derived_data_path: "example/ios/build"
|
||||
device: "iPhone X"
|
||||
build_configuration: "Release"
|
||||
scheme: "CameraRollExample"
|
||||
detox_configuration: "ios.sim.release"
|
||||
requires:
|
||||
- analyze
|
||||
# - rn/android_build:
|
||||
# name: android_debug_build
|
||||
# project_path: "example/android"
|
||||
# build_type: debug
|
||||
# requires:
|
||||
# - analyze
|
||||
# - rn/android_build:
|
||||
# name: android_release_build
|
||||
# project_path: "example/android"
|
||||
# build_type: release
|
||||
# requires:
|
||||
# - analyze
|
||||
# - rn/android_test:
|
||||
# logcat_grep: "com.camerarollexample"
|
||||
# detox_configuration: "android.emu.release"
|
||||
# requires:
|
||||
# - android_release_build
|
||||
# - rn/ios_build_and_test:
|
||||
# project_path: "example/ios/CameraRollExample.xcodeproj"
|
||||
# derived_data_path: "example/ios/build"
|
||||
# device: "iPhone X"
|
||||
# build_configuration: "Release"
|
||||
# scheme: "CameraRollExample"
|
||||
# detox_configuration: "ios.sim.release"
|
||||
# requires:
|
||||
# - analyze
|
||||
|
|
|
@ -19,6 +19,7 @@ const {
|
|||
Text,
|
||||
View,
|
||||
TouchableOpacity,
|
||||
Dimensions,
|
||||
} = ReactNative;
|
||||
import CameraRoll from '../../js/CameraRoll';
|
||||
import type {PhotoIdentifier, GroupTypes} from '../../js/CameraRoll';
|
||||
|
@ -57,16 +58,18 @@ export default class CameraRollExample extends React.Component<Props, State> {
|
|||
render() {
|
||||
return (
|
||||
<View>
|
||||
<Switch
|
||||
onValueChange={this._onSwitchChange}
|
||||
value={this.state.bigImages}
|
||||
/>
|
||||
<Text>{(this.state.bigImages ? 'Big' : 'Small') + ' Images'}</Text>
|
||||
<Slider
|
||||
value={this.state.sliderValue}
|
||||
onValueChange={this._onSliderChange}
|
||||
/>
|
||||
<Text>{'Group Type: ' + this.state.groupTypes}</Text>
|
||||
<View style={styles.header}>
|
||||
<Switch
|
||||
onValueChange={this._onSwitchChange}
|
||||
value={this.state.bigImages}
|
||||
/>
|
||||
<Text>{(this.state.bigImages ? 'Big' : 'Small') + ' Images'}</Text>
|
||||
<Slider
|
||||
value={this.state.sliderValue}
|
||||
onValueChange={this._onSliderChange}
|
||||
/>
|
||||
<Text>{'Group Type: ' + this.state.groupTypes}</Text>
|
||||
</View>
|
||||
<CameraRollView
|
||||
ref={ref => {
|
||||
this._cameraRollView = ref;
|
||||
|
@ -131,6 +134,11 @@ export default class CameraRollExample extends React.Component<Props, State> {
|
|||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
header: {
|
||||
marginTop: 44,
|
||||
padding: 20,
|
||||
width: Dimensions.get('window').width,
|
||||
},
|
||||
row: {
|
||||
flexDirection: 'row',
|
||||
flex: 1,
|
||||
|
|
Loading…
Reference in New Issue