Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
fix const lint
Browse files Browse the repository at this point in the history
  • Loading branch information
maks committed May 7, 2020
1 parent d97d153 commit 5d4a2a7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/view/staff_welfare/your_welfare_view.dart
Expand Up @@ -16,10 +16,9 @@ class YourWelfareView extends StatelessWidget {
color: AppColors.grey50,
actions: <Widget>[
Row(
children: <Widget>[
children: const [
Padding(
padding: const EdgeInsets.only(right: 16),
child: CallButton(whURL))
padding: EdgeInsets.only(right: 16), child: CallButton(whURL))
],
),
],
Expand Down

0 comments on commit 5d4a2a7

Please sign in to comment.