// src/components/CustomDropdown.js import React from 'react'; import { StyleSheet } from 'react-native'; import { Dropdown } from 'react-native-element-dropdown'; const CustomDropdown = ({ data = [], value, onChange, placeholder = '--Select--', containerStyle = {}, }) => { return ( ); }; const styles = StyleSheet.create({ dropdown: { borderWidth: 1, borderColor: '#ccc', borderRadius: 8, paddingHorizontal: 10, height: 45, marginBottom: 0, // ✅ no margin paddingBottom: 0, // ✅ no padding }, }); export default CustomDropdown;