draft navigation button

This commit is contained in:
yggverse 2024-04-09 15:13:04 +03:00
parent 9ba43116b0
commit b48b3a6980
3 changed files with 47 additions and 3 deletions

18
src/Button/Go.php Normal file
View file

@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace Yggverse\Yoda\Button;
class Go
{
public \GtkButton $button;
public function __construct(
?string $label = 'Go'
) {
$this->button = \GtkButton::new_with_label(
$label
);
}
}