draft new navigation buttons

This commit is contained in:
yggverse 2024-04-09 15:32:40 +03:00
parent 9635f6fcea
commit 42d65d4a50
6 changed files with 129 additions and 0 deletions

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

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