@dp.callback_query_handler(text='текст кнопки')
async def cmd_get_mes(callback: types.CallbackQuery):
await callback.answer()
markup = ReplyKeyboardMarkup(keyboard=[
[KeyboardButton(text='текст')]
], resize_keyboard=True)
await callback.message.answer('Текст', reply_markup=markup)