简体   繁体   中英

How to add icon to the date picker of nativebase components react native

I am using date picker component from native base UI component library is there any prop that can be used to display Icons.

There's not a native way to display an icon on Datepicker yet.

But you can do something like this:

<View>
    <Text style={styles.label}>Birth Date</Text>
    <View style={styles.datePickerInput}
    >
        <DatePicker
            ref={datePicker}
            maximumDate={new Date()}
            locale="en"
            modalTransparent={false}
            animationType="fade"
            androidMode="spinner"
            placeHolderText="Select a date"
            placeHolderTextStyle={{ color: '#d3d3d3', fontFamily: 'default' }}
            textStyle={{ color: '#222', fontFamily: 'default', fontSize: 15 }}
            disabled={false}
        >
        </DatePicker>
        <View>
            <Icon
                active
                name='calendar'
                style={styles.datepickerIcon}
                onPress={handleDatePickerIconClick}
            />
        </View>
    </View>
</View>

Remember to use the ref to trigger datepicker:

const datePicker = useRef();

const handleDatePickerIconClick = () => {
    datePicker.current?.showDatePicker();
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM