Skip to content

Commit

Permalink
fix(neon_framework): Remove progress indicator height jumping around
Browse files Browse the repository at this point in the history
Signed-off-by: jld3103 <[email protected]>
  • Loading branch information
provokateurin committed Dec 24, 2023
1 parent f2d8516 commit aae7999
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class NeonLinearProgressIndicator extends StatelessWidget {
@override
Widget build(final BuildContext context) => Container(
margin: margin,
constraints: BoxConstraints.loose(const Size.fromHeight(3)),
constraints: BoxConstraints.tight(const Size.fromHeight(3)),
child: visible
? LinearProgressIndicator(
color: color,
Expand Down

0 comments on commit aae7999

Please sign in to comment.