Skip to content

Commit

Permalink
lint fixes (apache#22600)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkhan.nausharipov committed Sep 23, 2022
1 parent 14858f8 commit 63919e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class _IconLabel extends StatelessWidget {
final String label;
final void Function()? onTap;

// TODO: Auto-determine.
// TODO(nausharipov): Auto-determine.
final bool isSvg;

const _IconLabel({
Expand Down
3 changes: 2 additions & 1 deletion learning/tour-of-beam/frontend/lib/pages/tour/screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,8 @@ class _ContentFooter extends StatelessWidget {
border: Border(
top: BorderSide(color: themeData.dividerColor),
),
color: themeData.extension<BeamThemeExtension>()?.secondaryBackgroundColor,
color:
themeData.extension<BeamThemeExtension>()?.secondaryBackgroundColor,
),
width: double.infinity,
padding: const EdgeInsets.all(BeamSizes.size20),
Expand Down

0 comments on commit 63919e4

Please sign in to comment.