Home > Mobile >  Flutter alphabetical list from a to z on right side
Flutter alphabetical list from a to z on right side

Time:08-27

I want to implement an alphabetical list on the right side of the screen, i don't want to use a packages because they reorder my listview which i want to stay at same order, and i want to implement the onClick on a letter manualy.

So how do i implement this widget and make it stay on the side of the screen

enter image description here

CodePudding user response:

I do NOT quite get when you say, "i don't want to use a packages because they reorder my listview which i want to stay at same order".

However, here is my implementation for your requirement. enter image description here

  • Related