Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@bacons/react-views
Advanced tools
Basically if React Native and React Native for web had a baby and raised it to believe in TypeScript
Imagine if you could use react-native-web
props without breaking your react-native
app or filling it with TypeScript errors. I hope one day this package can stop existing.
yarn add @bacons/react-views
Drop-in replacement for View, Text, and Image that works with react-native-web and react-native. Adds the hoverStyle
style prop for web (does not support pre-rendering).
import { View, Image, Text, StyleSheet, Pressable } from "@bacons/react-views";
function App() {
return (
<>
<View
accessibilityRole="main"
style={{
// These styles do nothing on native.
transitionDuration: "200ms",
}}
hoverStyle={{
backgroundColor: "darkturquoise",
}}
// A custom prop that centers contents, because I'm lazy.
center
>
{/* No TypeScript errors... */}
<Text href="#">Link</Text>
<Text accessibilityRole="heading" accessibilityLevel={1}>
Header
</Text>
</View>
</>
);
}
Mostly this adds types so there shouldn't be too much bloat. The styles are all evaluated on native platforms though, this doesn't have much overhead since StyleSheet
API doesn't do anything on native besides adding typed props.
StyleSheet
andPressable
have adjusted types only.
FAQs
Basically if React Native and React Native for web had a baby and raised it to believe in TypeScript
The npm package @bacons/react-views receives a total of 8,910 weekly downloads. As such, @bacons/react-views popularity was classified as popular.
We found that @bacons/react-views 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.