Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃悰 ProgressRing overflows its parent #942

Closed
robkri opened this issue Oct 17, 2023 · 0 comments
Closed

馃悰 ProgressRing overflows its parent #942

robkri opened this issue Oct 17, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@robkri
Copy link
Contributor

robkri commented Oct 17, 2023

Describe the bug
The ProgressRing widget overflows its parent's (here: a yellow Container) border:
ProgressRing

To Reproduce

void main(List<String> args) {
  runApp(FluentApp(
    home: Container(
        color: Colors.white,
        child: Center(
          child: Container(
            width: 100,
            height: 100,
            color: Colors.yellow,
            child: const ProgressRing(),
          ),
        )),
  ));
}

Expected behavior
The progress ring stays entirely inside its parent's borders.

@bdlukaa bdlukaa added the bug Something isn't working label Oct 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants