mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
9 lines
189 B
Rust
9 lines
189 B
Rust
use gtk::Entry;
|
|
|
|
pub fn new() -> Entry {
|
|
Entry::builder()
|
|
.placeholder_text("URL or search term...")
|
|
.hexpand(true)
|
|
.progress_pulse_step(0.1)
|
|
.build()
|
|
}
|