You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected behavior
The widget should not take extra space, it should take only the required space
Screenshots
Smartphone (please complete the following information):
Device: Pixel 3a
OS: Android 9.0 Pie
Additional context
In the attached screenshot, the widget is not forming a complete circle, it is a semi-circle gauge, still it is taking up space of a complete circular gauge.
The text was updated successfully, but these errors were encountered:
SanketKumarr
changed the title
Not able to remove extra padding
Not able to remove extra space
Jun 18, 2024
Currently, there isn't an option to hide the extra space in the widget. One workaround you can try is adjusting the position by setting the y-axis coordinate to 1 for now.
If you have any ideas or would like to contribute a solution, please feel free to raise a PR. We appreciate your help in improving our gauges library!
Cheers and thanks again for your feedback.
Describe the bug
The widget is taking an extra space from the bottom
To Reproduce
RadialGauge( track: const RadialTrack( start: 300, end: 850, steps: 26, startAngle: 0, endAngle: 180, thickness: 20, trackStyle: TrackStyle( primaryRulersHeight: 3, primaryRulersWidth: 3, secondaryRulerPerInterval: 0, showLabel: false, ), ), valueBar: [ const RadialValueBar( value: 850, valueBarThickness: 20, gradient: LinearGradient( colors: [ CupertinoColors.destructiveRed, CupertinoColors.activeGreen, ], stops: [ 0.0, 0.3, ], ), ), ], shapePointer: [ RadialShapePointer( value: _ficoScore, color: CupertinoColors.systemBlue, width: 15, ), RadialShapePointer( value: _ficoScore, color: CupertinoColors.white, width: 7, ), ], ),
Expected behavior
The widget should not take extra space, it should take only the required space
Screenshots
Smartphone (please complete the following information):
Additional context
In the attached screenshot, the widget is not forming a complete circle, it is a semi-circle gauge, still it is taking up space of a complete circular gauge.
The text was updated successfully, but these errors were encountered: