def send_menu(message, chat) -> None:
db_management.write_support("None", chat)
buttons = [[InlineKeyboardButton(" Список загрузок", "list")],
[InlineKeyboardButton("➕ Добавить ", "category#add_magnet"),
InlineKeyboardButton("➕ Add Torrent", "category#add_torrent")],
[InlineKeyboardButton("⏸ Pause", "pause"),
InlineKeyboardButton("▶️ Resume", "resume")],
[InlineKeyboardButton("⏸ Pause All", "pause_all"),
InlineKeyboardButton("▶️ Resume All", "resume_all")],
[InlineKeyboardButton(" Удалить", "delete_one"),
InlineKeyboardButton(" Удалить все", "delete_all")]]
try:
app.edit_message_text(chat, message, text="Управление Qbittorrent", reply_markup=InlineKeyboardMarkup(buttons))
except MessageIdInvalid:
app.send_message(chat, text="Управление Qbittorrent", reply_markup=InlineKeyboardMarkup(buttons))
как сделать так, чтобы клавиатура была под текстом ввода и адаптивно?