Skip to content

Commit

Permalink
Enable additional lints & update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pante committed Jun 30, 2024
1 parent a166606 commit 3aa0ea1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion forui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## Next

### Changes
* Change default `FTextFieldStyle`'s vertical content padding from `5` to `15`.
* Change `FTextField` to be usable in `Form`s.
* Change `FTextFieldStyle`'s default vertical content padding from `5` to `15`.
* Split exports in `forui.dart` into sub-libraries.

## Fixes
Expand Down
1 change: 1 addition & 0 deletions forui/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ analyzer:

linter:
rules:
- use_key_in_widget_constructors
- require_trailing_commas
2 changes: 2 additions & 0 deletions forui/lib/src/widgets/dialog/dialog_content.dart
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ class FHorizontalDialogContent extends FDialogContent {
required super.body,
required super.rawBody,
required super.actions,
super.key,
}) : super(alignment: CrossAxisAlignment.start, titleTextAlign: TextAlign.start, bodyTextAlign: TextAlign.start);

@override
Expand All @@ -125,6 +126,7 @@ class FVerticalDialogContent extends FDialogContent {
required super.body,
required super.rawBody,
required super.actions,
super.key,
}) : super(alignment: CrossAxisAlignment.center, titleTextAlign: TextAlign.center, bodyTextAlign: TextAlign.center);

@override
Expand Down

0 comments on commit 3aa0ea1

Please sign in to comment.