File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class AreasCard extends StatelessWidget {
78
78
@override
79
79
Widget build (BuildContext context) {
80
80
var cardContentWidth = MediaQuery .of (context).size.width * 0.7 ;
81
- var cardContentHeight = cardContentWidth;
81
+ var cardContentHeight = cardContentWidth * 1.1 ;
82
82
return SizedBox (
83
83
height: cardContentHeight,
84
84
child: ListView .separated (
@@ -193,6 +193,13 @@ class StudySpacePage extends StatelessWidget {
193
193
Visibility (
194
194
visible: studySpace.areas.isNotEmpty,
195
195
child: AreasCard (areas: studySpace.areas)),
196
+ Visibility (
197
+ visible: studySpace.areas.isNotEmpty,
198
+ child: SizedBox (
199
+ height:
200
+ Theme .of (context).textTheme.headlineSmall! .fontSize! /
201
+ 2 ),
202
+ ),
196
203
],
197
204
),
198
205
),
You can’t perform that action at this time.
0 commit comments