Skip to content

Commit

Permalink
Fix offset in description when title is null
Browse files Browse the repository at this point in the history
  • Loading branch information
MrLightful committed Aug 8, 2024
1 parent 35db58a commit 77f4df6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/widget/built_in/built_in.dart
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class BuiltInContent extends StatelessWidget {
children: [
content,
if (description != null) ...[
const SizedBox(height: 6),
if (title != null) const SizedBox(height: 6),
DefaultTextStyle.merge(
style: style.descriptionTextStyle(context)?.copyWith(
color: foregroundColor,
Expand Down

0 comments on commit 77f4df6

Please sign in to comment.