
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
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
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.