Skip to content

Commit

Permalink
Deleted space
Browse files Browse the repository at this point in the history
  • Loading branch information
moniaS committed Aug 1, 2019
1 parent 72e33a8 commit de81457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/numberpicker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class NumberPicker extends StatelessWidget {
assert(decimalPlaces != null && decimalPlaces > 0),
assert(maxValue > minValue),
assert(initialValue >= minValue && initialValue <= maxValue),
selectedIntValue = initialValue.floor(),
selectedIntValue = initialValue.floor(),
selectedDecimalValue = ((initialValue - initialValue.floorToDouble()) *
math.pow(10, decimalPlaces))
.round(),
Expand Down

0 comments on commit de81457

Please sign in to comment.