index.js 648 Bytes
import React, { PureComponent } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { width, zoomH, zoomW } from '../../utils/getSize';

import { PickerIOS, Picker } from '@react-native-community/picker';

class CustomRule extends PureComponent {
    constructor(props) {
        super(props);
        this.state = {};
    }
    componentDidMount() {
        this.props.navigation.setParams({
            title: '重复规则',
            backgroundColor: 'white',
            titleColor: 'black',
            isBack: true,
        });
    }

    render() {
        return <View></View>;
    }
}
export default CustomRule;