
Research
Trivy Under Attack Again: Widespread GitHub Actions Tag Compromise Exposes CI/CD Secrets
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.
@tarmiz/react-native-toast
Advanced tools
Reusable toast UI primitives for React Native.
yarn add @tarmiz/react-native-toast
yarn add react-native-reanimated react-native-safe-area-context react-native-responsive-screen lucide-react-native expo-blur expo-linear-gradient
import React from "react";
import { Pressable, Text, View } from "react-native";
import { ALERT_TYPE, useBlurToast } from "@tarmiz/react-native-toast";
export const Example = () => {
const { Toast, show } = useBlurToast();
return (
<>
<View>
<Pressable
onPress={() =>
show({
textBody: "Saved successfully",
type: ALERT_TYPE.SUCCESS,
duration: 3000,
})
}
>
<Text>Show toast</Text>
</Pressable>
</View>
<Toast />
</>
);
};
You can use the new custom option to control icon + left/right colors + text.
import React from "react";
import { Pressable, Text } from "react-native";
import { Rocket } from "lucide-react-native";
import { ALERT_TYPE, useBlurToast } from "@tarmiz/react-native-toast";
export const CustomToastExample = () => {
const { Toast, show } = useBlurToast();
return (
<>
<Pressable
onPress={() =>
show({
textBody: "Deploy started",
type: ALERT_TYPE.CUSTOM,
icon: Rocket,
iconColor: "#7EE787",
leftColor: "rgba(126, 231, 135, 0.35)",
rightColor: "rgba(84, 93, 89, 0.37)",
duration: 3500,
})
}
>
<Text>Show custom toast</Text>
</Pressable>
<Toast />
</>
);
};
Legacy error input is still supported and mapped internally to danger.
You can pass any valid color for leftColor and rightColor, including named colors, hex, and rgba.
Default behavior:
If you want a video in README, add this block and replace the URL with your own mp4:
If your package registry preview does not render video tags, add a fallback link below it:
FAQs
Reusable custom toast components and hook for React Native
The npm package @tarmiz/react-native-toast receives a total of 384 weekly downloads. As such, @tarmiz/react-native-toast popularity was classified as not popular.
We found that @tarmiz/react-native-toast demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Research
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.

Security News
ENISA’s new package manager advisory outlines the dependency security practices companies will need to demonstrate as the EU’s Cyber Resilience Act begins enforcing software supply chain requirements.

Research
/Security News
We identified over 20 additional malicious extensions, along with over 20 related sleeper extensions, some of which have already been weaponized.