Skip to content

Commit

Permalink
Fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
BirjuVachhani committed Sep 14, 2024
1 parent 1177ba5 commit 2aa9c6f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ class _SingleInputDialogState extends State<SingleInputDialog> {
validator: widget.validator,
),
const SizedBox(height: 20),
ButtonBar(
OverflowBar(
children: [
TextButton(
onPressed: () => Navigator.pop(context),
Expand Down Expand Up @@ -593,7 +593,7 @@ class _ExportDialogState extends State<ExportDialog> {
onChanged: (value) =>
setState(() => roundValues = value ?? false),
),
ButtonBar(
OverflowBar(
children: [
TextButton(
onPressed: () => Navigator.pop(context),
Expand Down

0 comments on commit 2aa9c6f

Please sign in to comment.