I'm building an app with flutter and get stuck while working on building a grid of items using SliverGrid
inside CustomScrollView
and I'm not able to add border-radius to its background. Note, I can add a radius to the individual grid item.
This is what I tried
Scaffold(
backgroundColor: Colors.orange,
body: CustomScrollView(
slivers: <Widget>[
SliverAppBar(
pinned: true,
floating: true,
expandedHeight: 250.0,
flexibleSpace: FlexibleSpaceBar(
background: Image.asset(
'assets/images/000.png',
fit: BoxFit.cover,
),
title: Text('Hello there')),
),
SliverGrid(
gridDelegate: SliverGridDelegateWithMaxCrossAxisExtent(
maxCrossAxisExtent: 200.0,
mainAxisSpacing: 10.0,
crossAxisSpacing: 10.0,
childAspectRatio: 4.0,
),
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
return Container(
margin: EdgeInsets.symmetric(
horizontal: 15,
vertical: 15,
),
alignment: Alignment.center,
color: Colors.teal[100 * (index % 9)],
child: Text('grid item $index'),
);
},
childCount: 30,
),
),
],
),
);
This picture below is what I got with the above code. And what I need now is to add a circular border-radius to topLeft and topRight of the orange part.
you could add a shape to the sliverAppBar
If you want it the other way around maybe you should create a custom ShapeBorder and override the getOuterPath to get outside of the shape and make it look like the orange side is the one with the shape. Let me know if you wanted it that way to try and update the answer
UPDATE
I believe you are looking for something like this
What I did was create a custom ShapeBorder based on ContinuousRectangleBorder but changing the getOuterPath and getInnerPath to a constant value to make it look like this (this was for the example, if you want a custom class that can use in more than one situation maybe changing some other values in the constructor).
I still used in the SliverAppBar because thats the widget that allows me to change the shape with the shape attribute, but with the getOuterPath I painted the curves going from the max height of the widget to maxHeight - 16 (just a random number I came up, its like the former example when I added
BorderRadius.vertical(bottom: Radius.circular(16))
). If you didn't have the Sliver AppBar and instead an AppBar in the Scaffold you could just wrap the CustomScrollView in a Card with no margin and a shape ofRoundedRectangleBorder( borderRadius: BorderRadius.vertical(top: Radius.circular(16)))
for a similar effectUPDATE WITH PACKAGE
add
flutter_group_sliver: ^0.0.2
to your pubspec.yaml dependenciesimport it to your project and use the new class SliverGroupBuilder() inside CustomScrollView, it's basically a Container made into a Sliver so you can use the margin, decoration, padding option inside a Sliver
The Scaffold background is pink and the SliverGroupBuilder is orange with a
BorderRadius.vertical(top: Radius.circular(16))
,Closed SliverAppBar
This approach gives you what you want, but you have to be careful with the color of the Scaffold backgound to make it different so you can see the border radius
check https://pub.dev/packages/flutter_group_sliver#-readme-tab- for more info of the package