import React from 'react'; import { Collapse, Stack, Heading, Button, Box, Text } from '@native-base/v3'; export default function () { const [show, setShow] = React.useState(false); const handleToggle = () => setShow(!show); const [text, setText] = React.useState( 'This text would change when the collapse animation start' ); const handleText = () => setText( show ? 'Collapse is open' : 'This text would change when the collapse animation start' ); const [color, setColor] = React.useState('indigo'); const handleColorToggle = () => setColor(color === 'green' ? 'indigo' : 'green'); return ( onAnimationStart & onAnimationEnd {text} Candy canes macaroon croissant carrot cake soufflé toffee topping pastry. Brownie lollipop brownie sesame snaps. Pastry gingerbread biscuit sweet I love macaroon bear claw fruitcake oat cake. Jelly sweet roll I love. Pastry pastry powder pie lemon drops chocolate topping dessert. Gummi bears ice cream I love cake chocolate bar jujubes powder. Sugar plum pie jujubes jelly cotton candy dragée chocolate bar liquorice sugar plum. I love caramels bonbon macaroon chocolate biscuit donut tart. ); }