我有一个过滤下拉菜单。我在另一页上有一个按钮。当我在另一个页面上单击此按钮时,如何返回到另一个页面上的下拉菜单的其他选项?
下拉页面
CustomDropdownButton<bool>(
hintText: "Select Filter",
value: controller.selectedFilter.value,
items: [
DropdownMenuItem<bool>(
child: Text("Sales"),
value: true,
),
DropdownMenuItem<bool>(
child: Text("Refunds"),
value: false,
)
],
onChanged: (bool selectedFilter) {
controller.selectedFilter.value = selectedFilter;
},
)
其他页面(按钮在这里,这个下拉菜单在另一个页面上)
Expanded(
child: ElevatedButton(
onPressed: () {
// return dropdown other value (this dropdown on another page).
},
child: Text("Update")),
)
谢谢,