Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Specialized button component for language selection with flag display
npm install expo-image @expo/vector-icons react-native-reanimated
import LanguageButton from '@/components/common/buttons/language-button';
item
{ code: string; name: string; flag: string; }
isActive
boolean
onPress
() => void
function Example() { return ( <LanguageButton item={{ code: 'en', name: 'English', flag: 'GB' }} isActive={true} onPress={() => console.log('Selected')} /> ); }
Was this page helpful?