Last active
September 25, 2024 06:13
-
-
Save vital-edu/e2976ad6ede98813b75ee44b1217cc96 to your computer and use it in GitHub Desktop.
How to overlap SliverList on a SliverAppBar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'How to overlap SliverList on a SliverAppBar', | |
debugShowCheckedModeBanner: false, | |
theme: ThemeData( | |
primarySwatch: Colors.blue, | |
), | |
home: Home(), | |
); | |
} | |
} | |
class Home extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
body: CustomScrollView( | |
slivers: <Widget>[ | |
SliverAppBar( | |
bottom: PreferredSize( | |
child: Container(), | |
preferredSize: Size(0, 20), | |
), | |
pinned: false, | |
expandedHeight: MediaQuery.of(context).size.height * 0.4, | |
flexibleSpace: Stack( | |
children: [ | |
Positioned( | |
child: Image( | |
fit: BoxFit.cover, | |
image: NetworkImage( | |
"https://images.pexels.com/photos/62389/pexels-photo-62389.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260", | |
), | |
), | |
top: 0, | |
left: 0, | |
right: 0, | |
bottom: 0), | |
Positioned( | |
child: Container( | |
height: 30, | |
decoration: BoxDecoration( | |
color: Colors.lightBlue[100], | |
borderRadius: BorderRadius.vertical( | |
top: Radius.circular(50), | |
), | |
), | |
), | |
bottom: -1, | |
left: 0, | |
right: 0, | |
), | |
], | |
), | |
), | |
SliverFixedExtentList( | |
itemExtent: 50.0, | |
delegate: SliverChildBuilderDelegate( | |
(BuildContext context, int index) { | |
return Container( | |
alignment: Alignment.center, | |
color: Colors.lightBlue[100 * (index + 1 % 9)], | |
child: Text('List Item $index'), | |
); | |
}, | |
), | |
), | |
], | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🙌