Hi Mike
In my app I need rebuild slider items several times. Before, I call 'slider.removeAllItems()' to remove them and after call slider.addItems for the new items.. All was ok, but now (8.0.3) that don`t works.
Can you create a method (without arguments) for this functionality?
Thanks in advance
The removeAllItems is only a small extension wrapper around the adapteR:
You can simple also call
slider.itemAdapter.clear()
now :)
We may want to add back an extension function for this though to ease transition
https://github.com/mikepenz/MaterialDrawer/issues/2612#issuecomment-636869664
perfect, it solves it
thanks Mike