Fix border style issues on iOS using View wrappers
masterReact Native has a known issue with border styles on <Text/> components on iOS. To resolve this when using custom cell rendering, wrap your <Text/> component in a <View/>.
Crucial: When using a wrapper, you must move the onLayout handler from the <Text/> component to the <View/> component to ensure layout calculations remain accurate.
// GOOD ✔️
renderCell={({index, symbol, isFocused}) => (
<View
key={index}
onLayout={getCellOnLayoutHandler(index)}
>
<Text>{...}</Text>
</View>
)}