
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
It displays text with a colorful gradient and optional animation of the gradient.
pip install flet_gradient_text
text
(str): The text content to displaytext_size
(optional): default text_size=20
, Font size of the texttext_weight
: optional, Font weight (e.g., ft.FontWeight.BOLD)text_style
(optional): property of type ft.TextStyle
animate
(bool): default animate=False
, True
to Enable animationduration
(float or int): default duration=0.5
, Controls the speed of the animationgradient
: (optional) Custom gradient to apply over the text, default LinearGradient
on_click
(optional): Event handler when the text is clickedon_hover
(optional): Event handler when hovering over the textimport flet as ft
from flet_gradient_text import GradientText
def main(page: ft.Page):
page.add(
GradientText(
text="Hello Gradient!",
text_size=40,
text_weight=ft.FontWeight.BOLD,
animate=True,
duration=1,
)
)
ft.app(target=main)
FAQs
A flet component for gradient & animated text
We found that flet-gradient-text 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
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.