Closure #
PhpTui\Tui\Extension\Core\Shape\ClosureShape
Shape that can write directly to the Painter context
Example #
Show code
<?php
declare(strict_types=1);
use PhpTui\Tui\Canvas\Marker;
use PhpTui\Tui\Canvas\Painter;
use PhpTui\Tui\DisplayBuilder;
use PhpTui\Tui\Extension\Core\Shape\ClosureShape;
use PhpTui\Tui\Extension\Core\Widget\CanvasWidget;
use PhpTui\Tui\Text\Line;
require 'vendor/autoload.php';
$display = DisplayBuilder::default()->build();
$display->draw(
CanvasWidget::fromIntBounds(-1, 21, -1, 21)
->marker(Marker::Dot)
->draw(
new ClosureShape(
function (Painter $painter): void {
$painter->context->print(
0,
0,
Line::fromString('Hello World')
);
}
)
)
);
Parameters #
Configure the shape using the builder methods named as follows:
Name | Type | Description |
---|---|---|
closure | Closure |