📜  flutter dropdownbutton stackoverflow - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:19.208000             🧑  作者: Mango

代码示例1
DropdownButton(
    isExpanded: true, //Step 1
    items: [
        new DropdownMenuItem(
            child: Text("Long text that overflow the size.. wrapped or ellipsized", 
            overflow: TextOverflow.ellipsis),  //Step 2
        ),
    ],
    onChanged: (val) { }
)