-
Notifications
You must be signed in to change notification settings - Fork 173
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BoxShadow doesn't display #89
Comments
I'm having the same issue. I am using boxShadows property. And I just don't see them at all... Code:
Flutter Doctor:
|
You have to downgrade flushbar to 1.8.2, there are some issues with constraints in the current version. Downgrading solved it for me |
Live at 1.9.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to add shadow to flushbar, but it doesn't display. I used the same code as in the readme example but still no result
Flushbar( boxShadows: [ BoxShadow( color: Colors.blue[800], offset: Offset(0.0, 2.0), blurRadius: 3.0) ], backgroundColor: Colors.white, messageText: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: <Widget>[ Text( "Out of stock" style: Theme.of(_context).textTheme.subtitle.copyWith(fontSize: 14), ), Icon(Icons.card_travel) ], ), duration: Duration(seconds: 2), flushbarPosition: FlushbarPosition.TOP, )..show(_context);
The text was updated successfully, but these errors were encountered: