GeekyAnts / GaugesFlutter

A gauge package for Flutter that displays progress and can be customized for appearance and behavior.
https://pub.dev/packages/geekyants_flutter_gauges
MIT License
67 stars 15 forks source link

[Bug]: Widget Pointer size doesn't impact Size of the LinearGauge #238

Open Afroz-Shaikh opened 1 year ago

Afroz-Shaikh commented 1 year ago

BUG: WidgetPointer Size doesn't impact Size of the LinearGauge as it does for ShapePointers Description: The size of the WidgetPointer doesn't impact the size of the LinearGauge

Screenshot 2023-06-01 at 3 14 12 PM

Steps to Reproduce:

LinearGauge(
          steps: 10,
          pointers: const [
            WidgetPointer(
              value: 0,
              child: Text(
                "☠️",
                style: TextStyle(
                  fontSize: 300,
                ),
              ),
            ),
          ],
          rulers: RulerStyle(rulerPosition: RulerPosition.bottom),
        ),

Environment: Version : 1.0.1

Additonal Information This issue occurs in Horizontal & Vertical GaugeOrientations The issue occurs consistently across different devices and browsers.