figengungor/clippy_flutter

Allow setting left AND right edges

RyanRamchandar opened this issue · 0 comments

For example a Point shape can have a pointed left and right edge be pointed.

Screen Shot 2019-05-04 at 4 35 54 PM

Sample

Point(
  triangleHeight: 30.0,
  edge: Edge.LEFT_AND_RIGHT,
  child: Container(
    color: Colors.orange,
    width: 100.0,
    height: 100.0,
    child: Center(child: Text('80')),
  ),
),