Skip to content

Commit

Permalink
style: fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
deandreamatias committed Dec 21, 2024
1 parent 544c9c7 commit efe15eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/form_builder_file_picker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ class _FormBuilderFilePickerState extends FormBuilderFieldDecorationState<
Container(
padding: const EdgeInsets.symmetric(horizontal: 2),
width: double.infinity,
color: Colors.white.withOpacity(.8),
color: Colors.white.withValues(alpha: .8),
child: Text(
files[index].name,
style: theme.textTheme.bodySmall,
Expand All @@ -283,7 +283,7 @@ class _FormBuilderFilePickerState extends FormBuilderFieldDecorationState<
child: Container(
margin: const EdgeInsets.all(3),
decoration: BoxDecoration(
color: Colors.grey.withOpacity(.7),
color: Colors.grey.withValues(alpha: .7),
shape: BoxShape.circle,
),
alignment: Alignment.center,
Expand Down

0 comments on commit efe15eb

Please sign in to comment.