Telegram's inline keyboard is a great feature with lots of different use cases.
Inline buttons are added as a list of items like this:
inline_keyboard = [[InlineKeyboardButton(text="button", callback_data="button"),
InlineKeyboardButton(text="reset",callback_data="reset")]]
inline_keyboard_markup = InlineKeyboardMarkup(inline_keyboard)
update.message.reply_text("hi", reply_markup=inline_keyboard_markup)
The above code adds two buttons each with the half width of the chat screen.
I know that for the the normal keyboard button there is a resize_keyboard
parameter which somehow can be used.
My question is that is there a way to resize the inline buttons? for example to make it full width or quarter width.
Unfortunately, you can't do it for now. :(
You can suggest this to @BotSupport, they might add this feature to next version.