Don't make column for summaries if there are no summaries (#4723)
This commit is contained in:
parent
b5a7b1bef0
commit
ec35836c5d
1 changed files with 4 additions and 0 deletions
|
|
@ -104,6 +104,10 @@ class ButtonControlledCarouselView extends StatelessWidget {
|
|||
|
||||
final isColumnMode = FluffyThemes.isColumnMode(context);
|
||||
|
||||
if (userSummaries.isEmpty) {
|
||||
return const SizedBox();
|
||||
}
|
||||
|
||||
return Column(
|
||||
children: [
|
||||
SizedBox(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue