We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@OverRide void initState() { super.initState(); _jumpIndex = monthList.indexOf(DateFormat("yyyy-MM").format(DateTime.now()).toString()); if(widget.dateType == DateModel.DATE_TYPE_DAY && widget.selectStartDate.isNotEmpty){ _jumpIndex = monthList.indexOf(DateFormat("yyyy-MM").format(DateTime.parse(widget.selectStartDate)).toString()); } Future.delayed(Duration(milliseconds: 50), () { itemScrollController.jumpTo(index: _jumpIndex); }); } @OverRide Widget build(BuildContext context) { return Column( children: [ CommonWidgetsProvider.getCommonDataWeeklyTitle(), Expanded(child: Container( color: Colors.white, child: ScrollablePositionedList.builder( itemCount: monthList.length, semanticChildCount: monthList.length, shrinkWrap: true, padding: EdgeInsets.all(0), initialScrollIndex: (_jumpIndex + 1), itemBuilder: (context, index){ return StickyHeader( header: _itemMonth(index), content:_itemDay(index), ); }, itemScrollController: itemScrollController,) ), flex: 1,), SizedBox(height: 20,) ], ); }
The text was updated successfully, but these errors were encountered:
It not always showing, just the last there mouths have the sharking gaps when scrolling, and i don't know why.
Sorry, something went wrong.
No branches or pull requests
@OverRide
void initState() {
super.initState();
_jumpIndex = monthList.indexOf(DateFormat("yyyy-MM").format(DateTime.now()).toString());
if(widget.dateType == DateModel.DATE_TYPE_DAY && widget.selectStartDate.isNotEmpty){
_jumpIndex = monthList.indexOf(DateFormat("yyyy-MM").format(DateTime.parse(widget.selectStartDate)).toString());
}
Future.delayed(Duration(milliseconds: 50), () {
itemScrollController.jumpTo(index: _jumpIndex);
});
}
@OverRide
Widget build(BuildContext context) {
return Column(
children: [
CommonWidgetsProvider.getCommonDataWeeklyTitle(),
Expanded(child: Container(
color: Colors.white,
child: ScrollablePositionedList.builder(
itemCount: monthList.length,
semanticChildCount: monthList.length,
shrinkWrap: true,
padding: EdgeInsets.all(0),
initialScrollIndex: (_jumpIndex + 1),
itemBuilder: (context, index){
return StickyHeader(
header: _itemMonth(index),
content:_itemDay(index),
);
},
itemScrollController: itemScrollController,)
), flex: 1,),
SizedBox(height: 20,)
],
);
}
The text was updated successfully, but these errors were encountered: