-
-
Notifications
You must be signed in to change notification settings - Fork 299
Description
Hi,
react-md is super cool, thanks for that.
it seems that NavigationDrawer should have transition effect, as far as i can tell it uses old (v1) version of react transitions - but, unfortunetly, without any effect.
I tried to add super long transitionEnterTimeout and transitionLeaveTimeout to see if it its doing anything. also I changed transitionName to something like example and add css:
`.example-enter.example-enter-active {
opacity: 1;
transition: opacity 500ms ease-in;
background: red;
border:10px red;
}
.example-leave {
opacity: 1;
background: blue;
border:10px blue;
}
.example-leave.example-leave-active {
opacity: 0.01;
transition: opacity 300ms ease-in;
background: green;
border:10px green;
}`
just to see if it do anything. but it's not.
also I don't any tranition effect on examples provided in documentation.
soo..I think it is a bug.
Thx