add placeholder text

This commit is contained in:
yggverse 2024-04-09 13:56:09 +03:00
parent 31a3aaf216
commit 0bb3cf2415

View File

@ -9,12 +9,17 @@ class Address
public \GtkEntry $entry;
public function __construct(
?string $value = null
?string $text = null,
?string $placeholder = 'URL or any search term...'
) {
$this->entry = new \GtkEntry();
$this->entry->set_text(
$value
$text
);
$this->entry->set_placeholder_text(
$placeholder
);
$this->entry->set_max_length(