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
I am using showModalActionSheet() from this package to display some information.
On the same page, I am setting the styling of the bottom sheet like this:
Theme( data: Theme.of(context).copyWith( bottomSheetTheme: Theme.of(context).bottomSheetTheme.copyWith( backgroundColor: Colors.transparent, ), ), ...
This also causes the background of the showModalActionSheet() to be transparent.
Is there a workaround to style those two parts seperately?
I tried it with
builder: (context, child) { return Theme( data: Theme.of(context).copyWith( bottomSheetTheme: Theme.of(context).bottomSheetTheme.copyWith( backgroundColor: Colors.red, ), ), child: child, ); },
but this does not seem to have any effect
The text was updated successfully, but these errors were encountered:
@davidsturm96 Please write reproducible main.dart and attach a screenshot.
main.dart
Sorry, something went wrong.
No branches or pull requests
I am using showModalActionSheet() from this package to display some information.
On the same page, I am setting the styling of the bottom sheet like this:
This also causes the background of the showModalActionSheet() to be transparent.
Is there a workaround to style those two parts seperately?
I tried it with
but this does not seem to have any effect
The text was updated successfully, but these errors were encountered: