import React, { useState } from 'react';
import { Breadcrumb, Box, Heading, HStack, Button } from 'native-base';
import {
MaterialCommunityIcons,
MaterialIcons,
AntDesign,
} from '@expo/vector-icons';
export const Example = () => {
const [collapsed, setCollapsed] = useState(true);
return (
<>
Breadcrumb Collapsible
{
setCollapsed(!collapsed);
}}
>
}
mr={1}
size="xs"
_current={{ color: 'blue.500' }}
/>
Home
}
mr={1}
size="xs"
_current={{ color: 'blue.500' }}
/>
Discord
Docs
}
mr={1}
size="xs"
_current={{ color: 'red.500' }}
/>
Github (This is currently active)
>
);
};