
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
github.com/ivanvc/bubble-marquee
A simple BubbleTea bubble component to generate marquees.
First, initialize a new marquee, then set the text to display, and optionally the width. If width is not defined, it's assumed from the text's length.
func NewMyModel() MyModel {
m := marquee.New()
m.SetText("Hello World")
m.SetWidth(100) // optional
return MyModel{marquee: m}
}
It supports two scrolling directions, left and right.
m.ScrollDirection = marquee.Right
You can also specify the scrolling speed (defaults to 250ms).
m.ScrollSpeed = 50 * time.Millisecond
Then, call scroll in your Init()
.
func(m MyModel) Init() tea.Cmd {
return m.marquee.Scroll
}
That's it. Check the documentation and the example directory for more detailed usage.
See LICENSE.
FAQs
Unknown package
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.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.