chore: show course info chips in one column mode
This commit is contained in:
parent
7ecd6ce3c8
commit
dac3c5edf5
1 changed files with 2 additions and 2 deletions
|
|
@ -296,7 +296,7 @@ class SpaceDetailsContent extends StatelessWidget {
|
|||
],
|
||||
Flexible(
|
||||
child: Column(
|
||||
spacing: 12.0,
|
||||
spacing: isColumnMode ? 12.0 : 6.0,
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
|
|
@ -311,7 +311,7 @@ class SpaceDetailsContent extends StatelessWidget {
|
|||
: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
if (isColumnMode && room.coursePlan != null)
|
||||
if (room.coursePlan != null)
|
||||
CourseInfoChips(
|
||||
room.coursePlan!.uuid,
|
||||
fontSize: 12.0,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue