File size: 483 Bytes
16bfc87 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from telegram import ReplyKeyboardMarkup, KeyboardButton
from tgbot.handlers.location.static_text import SEND_LOCATION
def send_location_keyboard() -> ReplyKeyboardMarkup:
# resize_keyboard=False will make this button appear on half screen (become very large).
# Likely, it will increase click conversion but may decrease UX quality.
return ReplyKeyboardMarkup(
[[KeyboardButton(text=SEND_LOCATION, request_location=True)]],
resize_keyboard=True
)
|