diff options
author | Hritik Chouhan <hritikc3961@gmail.com> | 2022-09-01 20:46:09 +0200 |
---|---|---|
committer | Hritik Chouhan <hritikc3961@gmail.com> | 2022-09-16 18:24:43 +0200 |
commit | 10945b8056eb2b228c156918a3505882a49a79b8 (patch) | |
tree | c8190f53a85ceaf31d9b978cb3d61941bb7a8bc4 /lib/drawArrow.dart | |
parent | cb0d87bfb6b6daf9ad22ab76d333e70451602406 (diff) |
Upload Flutter-Dashboard app for IVI
Flutter Dashboard app which shows Tyres Pressure,
Child lock status , Current Location,Speed,RPM,outside
and inside Temperature , Average fuel Consumption.
update UI and Removed Unused code.
Moved kuksa authtoken and mapbox access token and other
things to config file.
Bug-AGL: SPEC-4547
Signed-off-by: Hritik Chouhan <hritikc3961@gmail.com>
Change-Id: I14f42ed453c8279a1e89f8835d2b24e07e4ce376
Diffstat (limited to 'lib/drawArrow.dart')
-rw-r--r-- | lib/drawArrow.dart | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/lib/drawArrow.dart b/lib/drawArrow.dart new file mode 100644 index 0000000..71b751f --- /dev/null +++ b/lib/drawArrow.dart @@ -0,0 +1,81 @@ +// SPDX-License-Identifier: Apache-2.0 +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; + +class Arrowpaint extends CustomPainter{ + @override + void paint(Canvas canvas, Size size) { + var paint = Paint(); + var path = Path(); + paint.color = Colors.grey; + paint.style = PaintingStyle.stroke; + paint.strokeWidth = 1; + path.moveTo(0, size.height*0.8); + path.lineTo(size.width*0.8, size.height*0.8); + path.lineTo(size.width*0.8, size.height*0.2); + path.moveTo(size.width*0.75, size.height*0.25); + path.lineTo(size.width*0.8, size.height*0.15); + path.lineTo(size.width*0.85, size.height*0.25); + canvas.drawPath(path, paint); + // TODO: implement paint + } + + @override + bool shouldRepaint(covariant CustomPainter oldDelegate) { + // TODO: implement shouldRepaint + // throw UnimplementedError(); + return false; + } + +} +class Arrowpaint2 extends CustomPainter{ + @override + void paint(Canvas canvas, Size size) { + var paint = Paint(); + var path = Path(); + paint.color = Colors.grey; + paint.style = PaintingStyle.stroke; + paint.strokeWidth = 1; + path.moveTo(size.width, size.height*0.8); + path.lineTo(size.width*0.2, size.height*0.8); + path.lineTo(size.width*0.2, size.height*0.2); + path.moveTo(size.width*0.15, size.height*0.25); + path.lineTo(size.width*0.2, size.height*0.15); + path.lineTo(size.width*0.25, size.height*0.25); + canvas.drawPath(path, paint); + // TODO: implement paint + } + + @override + bool shouldRepaint(covariant CustomPainter oldDelegate) { + // TODO: implement shouldRepaint + // throw UnimplementedError(); + return false; + } + +} + +class simplearrow extends CustomPainter{ + @override + void paint(Canvas canvas, Size size) { + var paint = Paint(); + var path = Path(); + paint.color = Colors.grey; + paint.strokeWidth = 1; + paint.style = PaintingStyle.stroke; + path.moveTo(0, size.height*0.5); + path.lineTo(size.width*0.8, size.height*0.5); + path.moveTo(size.width*0.75, size.height*0.40); + path.lineTo(size.width*0.85, size.height*0.5); + path.lineTo(size.width*0.75, size.height*0.60); + canvas.drawPath(path, paint); + // TODO: implement paint + } + + @override + bool shouldRepaint(covariant CustomPainter oldDelegate) { + // TODO: implement shouldRepaint + return false; + } + +}
\ No newline at end of file |