I have noticed that buttons are very big among usually.
There is a way to set height of buttons? Thanks!
You can play with resize_keyboard option
@dotcypress' answer hits the spot! Thanks!
If you are using laravel library the add below code :
Add ['resize_keyboard' => true]聽in make() function.
$keyboard = Keyboard::make(['resize_keyboard' => true])
->row( Keyboard::button(['text' => "\xE2\x9C\x8F Register"]),
Keyboard::button(['text' => "\xE2\x98\x91 Verify Account"])
);
Can i put custom size to keyboard? like 1/2 of half screen
Can i put custom size to keyboard? like 1/2 of half screen
Hi! Have you done this task? I need an answer for the question of the height of the buttons. Thank you for the answer.
Can i put custom size to keyboard? like 1/2 of half screen
No, Telegram fits it optimally on the screen, you don't have finer access to tuning the size.
Most helpful comment
You can play with
resize_keyboardoption