#Transition between Panels in Tabs component

4 messages · Page 1 of 1 (latest)

kindred canyon
#

How can I do transition between Panels in Tabs component ?
I tried using transition component with this configuration but the transition didn't happen

<Tabs.Panel value="messages" pt="xs">
  <Transition
      mounted={true}
      transition="fade"
      duration={400}
      timingFunction="ease"
    >
    {(styles) => <div style={styles}>Message tab content</div>}
  </Transition>
</Tabs.Panel>

Any ideas ?

peak prism
#

try <Tabs keepMounted={false}>

kindred canyon
kindred canyon
#

@novel shadow Any help in this matter ?