How to create this UI in Gmail Add-on using Google Apps Script

柔情痞子 提交于 2019-12-06 21:56:27

Take a look at this screenshot

I used an emoji for the eye (Add-on support emojis). Does this get you what you are looking for?

          settingSection.addWidget(CardService.newKeyValue()
                                      .setContent("User@email.com")
                                      .setOnClickAction(saveAction)
                                      .setButton(CardService.newTextButton()
                                                 .setText("👁️ 2")
                                                 .setOnClickAction(saveAction))
                                       );
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!