You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case we have some keyboard like InlineKeyboardMarkup or ReplyKeyboardMarkup it would be useful to have some extension to modify them like:
val keyboard:InlineKeyboardMarkup=...;
keyboard.modified {
remove(0) // removing of zero line
replace(0) {
// standard row workflow
} // replacing of zero line by a new one
add { // duplicate of row extension// standard row workflow
}
modifyRow {
// standard row workflow with exists row
}
row {
// standard row workflow
}
}
The text was updated successfully, but these errors were encountered:
In case we have some keyboard like
InlineKeyboardMarkup
orReplyKeyboardMarkup
it would be useful to have some extension to modify them like:The text was updated successfully, but these errors were encountered: