To use @gluestack-ui/vstack
, all you need to do is install the
@gluestack-ui/vstack
package:
$ yarn add @gluestack-ui/vstack
# or
$ npm i @gluestack-ui/vstack
VStack organizes items vertically in a layout. Alternatively, you can use Column as an alias for VStack to achieve the same layout. Here's an example how to use this package to create one:
import { Root, Spacer } from '../components/vstack/styled-components';
import { createVStack } from '@gluestack-ui/vstack';
const VStack = createVStack({
Root,
Spacer,
});
Default styling of all these components can be found in the components/core/vstack file. For reference, you can view the source code of the styled vstack
components.
// import the styles
import { Root, Spacer } from '../components/vstack/styled-components';
// import the createVStack function
import { createVStack } from '@gluestack-ui/vstack';
// Understanding the API
const VStack = createVStack({
Root,
Spacer,
});
// Using the vstack component
export default () => <VStack />;
More guides on how to get started are available here.