Answers for "bottom shadow in react native"

0

bottom shadow in react native

const styles = StyleSheet.create({
  container: {
    ...Platform.select({
      ios: {
        shadowColor: '#000',
        shadowOffset: {width: 1, height: 3},
        shadowOpacity: 0.2,
      },
      android: {
        elevation: 4,
      },
    }),
  },
});
Posted by: Guest on March-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language