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
The larger the MDCard, the larger the shadow becomes, even if I don't change the elevation. This means that it doesn't vanish nicely, but is cut off.
Here is a small example to reproduce it:
from kivy.lang import Builder from kivymd.app import MDApp KV = ''' MDScreen: theme_bg_color: "Custom" md_bg_color: self.theme_cls.backgroundColor MDBoxLayout: orientation: 'horizontal' padding: 20 spacing: 20 MDCard: style: 'elevated' size_hint: 0.1, 0.25 MDCard: style: 'elevated' size_hint: 0.3, 0.5 MDCard: style: 'elevated' size_hint: 0.6, 1 ''' class Example(MDApp): def build(self): return Builder.load_string(KV) Example().run()
Then you will get something like the following screenshot (You can't see it well in the preview, please open the image):
Here a little closer between the middle and the large:
The text was updated successfully, but these errors were encountered:
kivy/kivy#8593
Sorry, something went wrong.
No branches or pull requests
The larger the MDCard, the larger the shadow becomes, even if I don't change the elevation.
This means that it doesn't vanish nicely, but is cut off.
Here is a small example to reproduce it:
Then you will get something like the following screenshot (You can't see it well in the preview, please open the image):
Here a little closer between the middle and the large:
Versions
The text was updated successfully, but these errors were encountered: