Accessibility language - React Native

In React Native, there is limited support to change the accessibility language. The accessibilityLanguage prop of Text only works on iOS. Multiple Text elements can be combined to speak content in multiple languages.

<Text>
  <Text accessibilityLanguage="nl-NL">Appt</Text>
  <Text>is an accessibility platform.</Text>
</Text>