As far as I can tell there's no way to change the title colour if you provide a title for RefreshControl:
<RefreshControl
refreshing={isRankDataRefreshing}
onRefresh={onRefreshRankings}
title={'Refreshing'}
tintColor='white'
progressBackgroundColor='white'
/>
By default the colour will be black. This is problematic if you have a non-standard background colour:

I'm not sure if this is the best approach, but one solution would just be to add an additional prop, titleColor, for instance.
As far as I can tell there's no way to change the title colour if you provide a title for RefreshControl:
By default the colour will be black. This is problematic if you have a non-standard background colour:
I'm not sure if this is the best approach, but one solution would just be to add an additional prop,
titleColor, for instance.