
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
@skel-ui/react-native
Advanced tools
Lightweight and powerful skeleton loading library for React.
Skel UI resolves the challenges of implementing skeletons by eliminating the need to create dedicated loading screens and providing an easier way to manage skeleton states using React Context.
See the comparision here.
Wrap your application with Skel UI provider.
import * as Skel from "@skel-ui/react-native";
export default function App() {
return <Skel.Provider> ... </Skel.Provider>;
}
Now it's time for you to craft your user interface to life!
import * as Skel from "@skel-ui/react-native";
import RN from "react-native";
export default function PostCard() {
const { post, isLoading } = usePost();
return (
<Skel.Root isLoading={isLoading}>
<RN.View style={styles.card}>
<Skel.Image src={post?.image} style={styles.cardImage} />
<Skel.Text sw="65%" style={styles.cardTitle}>
{post?.title}
</Skel.Text>
<Skel.Text numberOfLines={3} style={styles.cardDescription}>
{post?.description}
</Skel.Text>
</RN.View>
</Skel.Root>
);
}
const styles = RN.StyleSheet.create({
card: {
width: 320,
padding: 10,
marginHorizontal: "auto",
borderWidth: 1,
borderColor: "#e2e8f0",
borderRadius: 8,
},
cardImage: {
borderRadius: 4,
aspectRatio: 800 / 530,
},
cardTitle: {
marginTop: 16,
marginBottom: 8,
fontSize: 24,
lineHeight: 28,
fontWeight: 800,
},
cardDescription: {
fontSize: 14,
lineHeight: 20,
},
});
Now, not only have you designed the skeleton, but you have also done the actual UI. Additionally, the skeleton state for the entire UI is handled in a single place at the <Skel.Root>
.
For full documentation, visit skel-ui.augustin.zip
FAQs
Lightweight and powerful skeleton loading library for React.
The npm package @skel-ui/react-native receives a total of 216 weekly downloads. As such, @skel-ui/react-native popularity was classified as not popular.
We found that @skel-ui/react-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.