File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ class AdvancedOptionsDropdown extends StatelessWidget {
5050 );
5151 }
5252
53- Widget _popoverBuilder (context) => Padding (
53+ Widget _popoverBuilder (BuildContext context) => Padding (
5454 padding: const EdgeInsets .all (12 ),
5555 child: Column (
5656 mainAxisSize: MainAxisSize .min,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class TankThumbnail extends StatelessWidget {
3838 }
3939 }
4040
41- Widget _graph (series, String axis) {
41+ Widget _graph (List < CartesianSeries < dynamic , dynamic >> series, String axis) {
4242 final double setpoint =
4343 axis == 'pHAxis' ? snapshot.pHSetpoint! : snapshot.temperatureSetpoint! ;
4444 final double deviation = axis == 'pHAxis' ? pHDeviation : tempDeviation;
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ class _HomePageState extends State<HomePage> {
153153 );
154154 }
155155
156- EdgeInsets _gridViewPadding (sideMargins) {
156+ EdgeInsets _gridViewPadding (double sideMargins) {
157157 return EdgeInsets .only (
158158 left: sideMargins,
159159 right: sideMargins,
You can’t perform that action at this time.
0 commit comments