You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you please suggest how to make multiline text for promt?
The example below breaks the menu:
$itemCallable = function (CliMenu$menu) {
$result = $menu->askText()
->setPromptText("Text line 1\nText line 2\nText line 3")
->setPlaceholderText('')
->ask();
var_dump($result->fetch());
};