How to skip some Dates Flutter
I try to display dates of weeks. but based on requirement i need to skip Saturday and Sunday every time. here is code of date list:- ListView.builder( itemCount: 7, shrinkWrap: true, itemBuilder: (context, index) => dateWidget(index), ), here is code…