Remove unnecessary string interpolations

pull/145/head
Till Friebe 4 years ago
parent 5bab918860
commit 483dba0e4a
  1. 1
      analysis_options.yaml
  2. 4
      lib/widgets/text_block.dart

@ -30,3 +30,4 @@ linter:
- prefer_relative_imports
- prefer_single_quotes
- unnecessary_parenthesis
- unnecessary_string_interpolations

@ -580,7 +580,7 @@ class _NumberPoint extends StatelessWidget {
alignment: AlignmentDirectional.topEnd,
width: width,
padding: EdgeInsetsDirectional.only(end: padding),
child: Text(withDot ? '$s.' : '$s', style: style),
child: Text(withDot ? '$s.' : s, style: style),
);
}
if (attrs.containsKey(Attribute.indent.key)) {
@ -611,7 +611,7 @@ class _NumberPoint extends StatelessWidget {
alignment: AlignmentDirectional.topEnd,
width: width,
padding: EdgeInsetsDirectional.only(end: padding),
child: Text(withDot ? '$s.' : '$s', style: style),
child: Text(withDot ? '$s.' : s, style: style),
);
}

Loading…
Cancel
Save