1

im creating a telegram bot using nodejs and telegrafjs i want to know how to create this menu button i cant find anywhere in documents.

enter image description here

it opens up a menu like this one

enter image description here

MiLaD A
  • 149
  • 2
  • 14

1 Answers1

2

Check this examples

bot.command('your command', async (ctx) => {
  return await ctx.reply('this is text', Markup
    .keyboard([
      ['button 1', 'button 2'], // Row1 with 2 buttons
      ['button 3', 'button 4'], // Row2 with 2 buttons
      ['button 5', 'button 6', 'button 7'] // Row3 with 3 buttons
    ])
    .oneTime()
    .resize()
  )
})
Tyler2P
  • 2,324
  • 26
  • 22
  • 31
f1kus
  • 61
  • 2