-
-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
OS: ParrotOS(Linux Distro)
Issue in detail
when we maximise the screen, The check/tick icons and the indicator dot/circle in stepsView has been enlarged as we show in above picture. This may be due to the responsive sizes or Wrong Icon alignment.
Fix
In /lib/src/ui/widgets/step_widget.dart
line 59
CircleAvatar(
maxRadius: blockSize(context)*2.5,
minRadius: blockSize(context)*2,
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
),Adding maxRadius and minRadius
and also adding Icon size
In /lib/src/ui/widgets/step_widget.dart
line 26
return Icon(
Icons.done,
size: blockSize(context) * 2.75,
// you can even keep same if you wish not to change
// size: blockSize(context) * 3,
color: Theme.of(context).accentColor,
);will fix this issue.
Metadata
Metadata
Assignees
Labels
No labels
