Как установить fontFamily для <Text /> в react-native-maps или в react-native-map-clustering.
<Text />
react-native-maps
react-native-map-clustering
<Marker coordinate={{ ... }} > <Text style={{ fontFamily:"IRANSansMobile" }} > {this.props.pointCount} </Text> </Marker>
Я решил эту проблему, используя SVG https://github.com/react-native-community/react-native-svg
SVG
<Marker coordinate={{ ... }} onPress={...} > <Svg width={...} height={...} > <Text x={...} y={...} fontFamily="IRANSansMobile" fontSize={20} textAnchor="middle" fill={"#fff"} > {this.props.pointCount} </Text> </Svg> </Marker>