
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
react-native-linear-gradient-degree
Advanced tools
Transform css linear-gradient degree to start and end coordinates in react-native-linear-gradient or expo-linear-gradient
Supply Chain Security
Vulnerability
Quality
Maintenance
License
Transform css linear-gradient degree to start and end coordinates
in react-native-linear-gradient or expo-linear-gradient
npm install react-native-linear-gradient-degree --save
For example, css background:
background : linear-gradient(240deg,rgba(43,156,225,1) 0%,rgba(46,137,193,1) 100%);
import * as React from 'react';
import { Text, View } from 'react-native';
import { LinearGradient } from 'expo-linear-gradient';
import { deg } from 'react-native-linear-gradient-degree';
export const App: React.FunctionComponent = function App(props) {
return (
<View style={{ marginTop: 200 }}>
<LinearGradient colors={["rgba(43,156,225,1)", "rgba(46,137,193,1)"]} {...deg(240)}>
<Text style={{ height: 50, width: 200 }}>apply</Text>
</LinearGradient>
</View>
);
};
console.log(deg(240)) // {"start":{"x":1,"y":0.7886751345948129},"end":{"x":0,"y":0.21132486540518713}}
MIT
FAQs
Transform css linear-gradient degree to start and end coordinates in react-native-linear-gradient or expo-linear-gradient
The npm package react-native-linear-gradient-degree receives a total of 553 weekly downloads. As such, react-native-linear-gradient-degree popularity was classified as not popular.
We found that react-native-linear-gradient-degree 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.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.