React Native elevation StyleSheet not working in FlatList
问题 I'm trying to style my renderItem in FlatList but elevation not working properly. Is there anything I'm wrong or this is a React Native issue? I tested ListView too but it still not working properly This is TodoItem component import React, { Component } from 'react' import { Text, View, StyleSheet } from 'react-native' const styles = StyleSheet.create({ container: { height: 60, backgroundColor: 'white', borderRadius: 10, shadowColor: '#000', shadowOffset: { width: 2, height: 2 },