Skip to content

Commit

Permalink
fix: add missing padding for group description
Browse files Browse the repository at this point in the history
  • Loading branch information
inpt333 authored and borgoat committed Dec 3, 2024
1 parent 8f8c5f9 commit afa71eb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/presentation/screens/group_details.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ class GroupDetailsScreen extends StatelessWidget {
body: Column(
children: [
const DateDropdownContainer(),
if (groupDescription != null) Text(groupDescription),
if (groupDescription != null)
Padding(
padding: const EdgeInsets.only(left: 16.0, right: 16.0),
child: Text(groupDescription),
),
Expanded(child: SchedulesListContainer()),
],
),
Expand Down

0 comments on commit afa71eb

Please sign in to comment.