We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug A clear and concise description of what the bug is.
The footer expands to the horizontal ends of the screen. There isn't a way to constrain the width.
To Reproduce Steps to reproduce the behavior:
IntroductionScreen
PageViewModel
pages
PageViewModel( title: "This is a title", //"Welcome to KarmaKard", body: "This is a body", //"Where good deeds are rewarded with good deals.", image: _buildImage('community.png', 600), decoration: pageDecoration, footer: ConstrainedBox( constraints: const BoxConstraints(maxWidth: 300), child: ElevatedButton( onPressed: () { introKey.currentState?.animateScroll(0); }, style: ElevatedButton.styleFrom( backgroundColor: Theme.of(context).colorScheme.primary, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(8.0), ), ), child: Text( 'Continue', style: TextStyle(color: Theme.of(context).colorScheme.onPrimary), ), ), ), ),
Expected behavior The button should be constrained to the max width.
Screenshots
Additional context This is on Chrome, for flutter web.
The text was updated successfully, but these errors were encountered:
Duplicate
Sorry, something went wrong.
No branches or pull requests
Describe the bug
A clear and concise description of what the bug is.
The footer expands to the horizontal ends of the screen. There isn't a way to constrain the width.
To Reproduce
Steps to reproduce the behavior:
IntroductionScreen
widget.PageViewModel
to thepages
argument ofIntroductionScreen
:Expected behavior
The button should be constrained to the max width.
Screenshots
Additional context
This is on Chrome, for flutter web.
The text was updated successfully, but these errors were encountered: