Как добавить больше итенов, когда прокрутка завершена в раскрывающемся списке?
Мне нужно разбить несколько страниц на страницы.
Я пытаюсь добавить RefreshIndicator, но у меня нет любой успех.
ButtonTheme(
alignedDropdown: true,
child: DropdownButton<T>(
hint: Text(widget.label),
isExpanded: true,
value: currentSelectedValue,
onChanged: (value) {
widget.onSelect(value);
setState(() {
currentSelectedValue = value;
});
print(currentSelectedValue);
},
underline: Container(
height: 0,
color: Colors.transparent,
),
icon: Icon(
Icons.arrow_drop_down,
color: Color(0xFF8492A6),
),
disabledHint: Text(widget.disabledLabel),
items: widget.items.map((T value) {
return DropdownMenuItem<T>(
value: value,
child: Text(
widget.toStringFunc(value),
style: TextStyle(
color: Color(0xFF8492A6),
),
),
);
}).toList(),
),
),