skip to Main Content

Unsupported operation: Cannot add to an unmodifiable list unsing Bloc – Flutter

i am using bloc to add and remove from am list.. my bloc state is like this, @freezed class InterestActionState with _$InterestActionState { factory InterestActionState({ required bool isSubmitting, required List<String> selectedInterest, required Option<Either<InterestFailure, Unit>> intrestFailureOrSuccessOption, }) = Initial; factory InterestActionState.initial()…

VIEW QUESTION

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…

VIEW QUESTION
Back To Top
Search