Skip to content

Commit

Permalink
Fix default BorderSide in CutCornersBorder constructor (#135)
Browse files Browse the repository at this point in the history
issue #134
  • Loading branch information
jdkoren authored and willlarche committed Dec 4, 2018
1 parent 8edc25e commit 937f06a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mdc_100_series/lib/supplemental/cut_corners_border.dart
Expand Up @@ -19,7 +19,7 @@ import 'package:flutter/widgets.dart';

class CutCornersBorder extends OutlineInputBorder {
const CutCornersBorder({
BorderSide borderSide: BorderSide.none,
BorderSide borderSide: const BorderSide(),
BorderRadius borderRadius: const BorderRadius.all(Radius.circular(2.0)),
this.cut: 7.0,
double gapPadding: 2.0,
Expand Down

0 comments on commit 937f06a

Please sign in to comment.