python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
SliverPersistentHeader without using CustomScrollView
I had a CustomScrollView which looked like:
CustomScrollView(
slivers: [
SliverPersistentHeader(
floating: true,
delegate: MyPersistentHeaderDelegate(),
),
SliverList(...),
...

Code Spirit
Votes: 0
Answers: 1
How can I replace appBar with SliverAppBar in my code?
class _HomepageState extends State<Homepage> {
int pageNum = 0;
final pages = [
TodayPage(), /*HistoryPage()*/
];
@override
Widget build(BuildContext context) {
return Scaffo...
BlancShon
Votes: 0
Answers: 1
ReorderableSliverList with Futurebuilder
I'm trying to populate a ReorderableSliverList with data from an API using FutureBuilder.
Model (RouteOrderTable)
RouteOrderTable(
{required this.deliveryPeriod,
required this.driverId,
...
Toxic
Votes: 0
Answers: 1
Flutter: Differences between SliverList and SliverFixedExtentList
What are the differences between SliverList and SliverFixedExtentList in Flutter?
According to the documentation of each widget:
SliverList: "A sliver that places multiple box children in a line...

AnsonH
Votes: 0
Answers: 1