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
0.16.0-beta.4
3.16.0
设置背景色为linear-gradient后,无法覆盖颜色
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> </head> <head> <style> .button { padding: 20px; display: inline-block; text-align: center; vertical-align: middle; margin: 10px; background: linear-gradient(to right, red, blue) } .button.active { background: #ccc; } </style> </head> <body> <div class="button">按钮正常态</div> <div class="button" id="myButton" >点击按钮 按钮按下态</div> <script> var button = document.getElementById('myButton'); button.addEventListener('mousedown', function() { button.classList.add('active'); }); button.addEventListener('mouseup', function() { button.classList.remove('active'); }); </script> </body> </html>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Affected version
0.16.0-beta.4
Flutter versions
3.16.0
No same issues found.
Steps to Reproduce
设置背景色为linear-gradient后,无法覆盖颜色
Code example
Expected results
Actual results
The text was updated successfully, but these errors were encountered: