'how to make this grouped list with this animation in flutter
How to make this grouped List view with the grouped date animation. I have already familiar and tried with the grouped list view but that was for header and adjusting vertically header, I want grouped header should be horizontally adjusted with the items as it's in the video and it should scroll double as it's in the video.
Solution 1:[1]
Try sticky_infinite_list:
import 'package:sticky_infinite_list/sticky_infinite_list.dart';
class Example extends StatelessWidget {
@override
Widget build(BuildContext context) {
return InfiniteList(
builder: (BuildContext context, int index) {
/// Builder requires [InfiniteList] to be returned
return InfiniteListItem(
/// Header builder
headerBuilder: (BuildContext context) {
return Container(
///...
);
},
/// Content builder
contentBuilder: (BuildContext context) {
return Container(
///...
);
},
);
}
);
}
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Jim |

