import React from 'react'; import { Switch, VStack, Text, HStack } from '@gluestack-ui/themed'; //TODO: disabled styles are not working properly if set from themes file due to gluestack-ui bug. //Change the styles from the component itself once the issue is fixed. const SwitchBasic = ({ ...props }: any) => { return ( Text Text ); }; SwitchBasic.description = 'This is a basic Switch component example. Switches are used to toggle between two states.'; export default SwitchBasic; export { Switch, VStack, Text, HStack };