We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e32f39e commit ffc21b2Copy full SHA for ffc21b2
lib/pangea/activity_suggestions/activity_suggestions_area.dart
@@ -123,12 +123,18 @@ class ActivitySuggestionsAreaState extends State<ActivitySuggestionsArea> {
123
vertical: 16.0,
124
horizontal: FluffyThemes.isColumnMode(context) ? 16.0 : 0.0,
125
),
126
- child: SingleChildScrollView(
127
- controller: _scrollController,
128
- child: Wrap(
129
- children: cards,
130
- ),
131
+ child: FluffyThemes.isColumnMode(context)
+ ? ListView(
+ controller: _scrollController,
+ scrollDirection: Axis.horizontal,
+ children: cards,
+ )
132
+ : SingleChildScrollView(
133
134
+ child: Wrap(
135
136
+ ),
137
138
);
139
}
140
0 commit comments