I am trying to make a responsive page that works well on Mobile and Desktop. I am using SliverAppBar inside NestedScrollView. The issue is maxwidth constraints to a container are totally ignored in NestedScrollView. This behavior is also same with CustomScrollView.
How to restrict the size of Container in NestedScrollView body widget.
Below is the code:
import "dart:math";
import "package:flutter/material.dart";
class ResponsiveSliver extends StatefulWidget {
static const routeName = 'responsive-sliver';
@override
_ResponsiveSliverState createState() => _ResponsiveSliverState();
}
class _ResponsiveSliverState extends State<ResponsiveSliver> with SingleTickerProviderStateMixin {
@override
Widget build(BuildContext context) {
return Scaffold(
body: NestedScrollView(
floatHeaderSlivers: true,
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
return <Widget>[
SliverAppBar(
title: Text(
"Responsive Sliver",
),
centerTitle: true,
pinned: true,
floating: true,
),
];
},
body: ConstrainedBox(
constraints: BoxConstraints(maxWidth: 200),
child: Container(
child: ListView.separated(
separatorBuilder: (context, child) => Divider(
height: 1,
),
padding: EdgeInsets.all(0.0),
itemCount: 10,
itemBuilder: (context, i) {
return Container(
constraints: BoxConstraints(maxWidth: 200),
height: 100,
// width: double.infinity,
color: Colors.primaries[Random().nextInt(Colors.primaries.length)],
);
},
),
),
),
),
);
}
}
In my code above you can notice is am using maxWidth constraints,
ConstrainedBox( constraints: BoxConstraints(maxWidth: 200), child: ())
and
Container( constraints: BoxConstraints(maxWidth: 200), child: (),)
But these maxWidth constraints are completely ignored and it takes full width of the available screen.
I want to make NestedScrollView of full screen width which thus makes SliverAppbar cover whole screen width.
So far, I understand the Constraints take the width based on the size of their parent. In this case parent NestedScrollView is taking full screen width and is thus ignoring ConstrainedBox maxWidth property.
So how to make SliverAppBar full width in size and still set Max. Width on a Container?
Please advice how to resolve this.
Thank you
I solved it by using padding instead of a BoxConstraint.
If you replace
ConstrainedBox
withConstrainedSliverWidth
it should work.