Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shirne committed Oct 16, 2024
1 parent 6f7cf68 commit d402bef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/widgets/dropdown.dart
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class IsosTriangle {
final Radius radius;

double get height =>
math.pow(math.pow(side, 2) + math.pow(bottom / 2, 2), 0.5).toDouble();
math.pow(math.pow(side, 2) - math.pow(bottom / 2, 2), 0.5).toDouble();

IsosTriangle operator *(double t) {
return IsosTriangle(
Expand Down

0 comments on commit d402bef

Please sign in to comment.