Google Apps Script [Gmail Add-on] に 2 つの Widgets/InputTextBoxes を並べて追加する方法を誰か提案してもらえますか?
サンプルコード:
var section = CardService.newCardSection();
section.addWidget(
CardService.newTextInput()
.setTitle("Title1")
.setFieldName("field1")
);
section.addWidget(
CardService.newTextInput()
.setTitle("Title2")
.setFieldName("title2")
);
上記の Google Apps スクリプト コードは、Gmail アドオンで上下に 2 つの InputText フィールドを作成します。
同じ行に 2 つの TextInputFields/Dropdowns/Widgets を作成する方法はありますか? 【隣同士】
次のようなもの:
ありがとう、

