Skip to content

Commit

Permalink
forgot about the linter...
Browse files Browse the repository at this point in the history
  • Loading branch information
OverPoweredDev committed Oct 10, 2021
1 parent f5de801 commit d1113e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/settings_page/body.dart
Expand Up @@ -53,7 +53,7 @@ class _SettingsPageState extends State<SettingsPage> {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SettingsTitle(textColor),
SettingsTitle(textColor: textColor),
const SizedBox(height: 60),
SettingsList(
physics: const NeverScrollableScrollPhysics(),
Expand Down
2 changes: 1 addition & 1 deletion src/lib/settings_page/components/title.dart
@@ -1,8 +1,8 @@
import 'package:flutter/material.dart';

class SettingsTitle extends StatelessWidget {
const SettingsTitle({Key key, this.textColor}) : super(key: key);
final Color textColor;
const SettingsTitle(this.textColor);

@override
Widget build(BuildContext context) {
Expand Down

0 comments on commit d1113e8

Please sign in to comment.