Unverified Commit 702b78c6 authored by Tae Hyung Kim's avatar Tae Hyung Kim Committed by GitHub

Remove shrinkWrap from flexible_space_bar_test.dart (#132173)

See title.
parent 6da6fbf5
...@@ -910,13 +910,10 @@ class _SubCategoryScreenViewState extends State<SubCategoryScreenView> ...@@ -910,13 +910,10 @@ class _SubCategoryScreenViewState extends State<SubCategoryScreenView>
), ),
), ),
const SliverToBoxAdapter(child: SizedBox(height: 12)), const SliverToBoxAdapter(child: SizedBox(height: 12)),
SliverToBoxAdapter( SliverGrid.builder(
child: GridView.builder(
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3, crossAxisCount: 3,
), ),
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
itemCount: 300, itemCount: 300,
itemBuilder: (BuildContext context, int index) { itemBuilder: (BuildContext context, int index) {
return Card( return Card(
...@@ -925,7 +922,6 @@ class _SubCategoryScreenViewState extends State<SubCategoryScreenView> ...@@ -925,7 +922,6 @@ class _SubCategoryScreenViewState extends State<SubCategoryScreenView>
); );
}, },
), ),
),
const SliverToBoxAdapter(child: SizedBox(height: 12)), const SliverToBoxAdapter(child: SizedBox(height: 12)),
], ],
), ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment