
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@vikasrg/react-native-simple-shadow-view
Advanced tools
a Native shadow view for react native, for Android and iOS
This Module is updated version of https://github.com/ConduitMobileRND/react-native-simple-shadow-view There was some AndroidX issue with actual version.
$ npm install @vikasrg/react-native-simple-shadow-view --save
$ react-native link @vikasrg/react-native-simple-shadow-view
Libraries ➜ Add Files to [your project's name]node_modules ➜ react-native-shadow and add RNShadow.xcodeprojlibRNShadow.a to your project's Build Phases ➜ Link Binary With LibrariesCmd+R)<android/app/src/main/java/[...]/MainActivity.javaimport com.como.RNTShadowView.ShadowViewPackage; to the imports at the top of the filenew ShadowViewPackage() to the list returned by the getPackages() methodandroid/settings.gradle:
include ':@vikasrg/react-native-simple-shadow-view'
project(':@vikasrg/react-native-simple-shadow-view').projectDir = new File(rootProject.projectDir, '../node_modules/@vikasrg/react-native-simple-shadow-view/android')
android/app/build.gradle:
implementation project(':@vikasrg/react-native-simple-shadow-view')
android/app/build.gradle:
renderscriptTargetApi 18
renderscriptSupportModeEnabled true
Set shadow parameters to the ShadowView just as you use shadows in iOS. it will appear on android same as on iOS.
import React, { Component } from 'react';
import ShadowView from '@vikasrg/react-native-simple-shadow-view'
class MyView extends Component {
render() {
return (
<ShadowView
style={{
width: 100,
height: 100,
shadowColor: 'black',
shadowOpacity: 1,
shadowRadius: 20,
shadowOffset: { width: 0, height: 0 },
backgroundColor: 'rgba(0,255,0,0.5)',
}}
>
... Texts / Views / etc ...
</ShadowView>
);
}
export default MyView;
FAQs
a Native shadow view for react native, for Android and iOS
The npm package @vikasrg/react-native-simple-shadow-view receives a total of 1 weekly downloads. As such, @vikasrg/react-native-simple-shadow-view popularity was classified as not popular.
We found that @vikasrg/react-native-simple-shadow-view demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.