Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
ChipList
Contiene un conjunto de objetos Chip que se muestran en una fila y se unen a la siguiente línea para permitir el desplazamiento horizontal.
Solo está disponible para las apps de Google Chat. No está disponible para complementos de Google Workspace.
constchip=CardService.newChip();// Finish building the text chip...constchipList=CardService.newChipList().setLayout(CardService.ChipListLayout.WRAPPED).addChip(chip);
Establece el diseño de la lista de chips. Si no se establece, el valor predeterminado es el diseño ChipListLayout.WRAPPED.
constchip=CardService.newChip();// Finish building the text chip...constchipList=CardService.newChipList().setLayout(CardService.ChipListLayout.HORIZONTAL_SCROLLABLE).addChip(chip);
[[["Fácil de comprender","easyToUnderstand","thumb-up"],["Resolvió mi problema","solvedMyProblem","thumb-up"],["Otro","otherUp","thumb-up"]],[["Falta la información que necesito","missingTheInformationINeed","thumb-down"],["Muy complicado o demasiados pasos","tooComplicatedTooManySteps","thumb-down"],["Desactualizado","outOfDate","thumb-down"],["Problema de traducción","translationIssue","thumb-down"],["Problema con las muestras o los códigos","samplesCodeIssue","thumb-down"],["Otro","otherDown","thumb-down"]],["Última actualización: 2024-12-04 (UTC)"],[[["ChipList displays a set of Chip objects in a row, wrapping to the next line or horizontally scrolling."],["It's available for Google Chat apps and in developer preview for Google Workspace Add-ons."],["Developers can use `addChip()` to add chips and `setLayout()` to configure the layout of the ChipList."]]],[]]