Skip to content

Instantly share code, notes, and snippets.

@estevaolucas
Last active September 12, 2018 15:54
Show Gist options
  • Save estevaolucas/70f94061a80627a801c8ba46fa979bc2 to your computer and use it in GitHub Desktop.
Save estevaolucas/70f94061a80627a801c8ba46fa979bc2 to your computer and use it in GitHub Desktop.
Simulate React-Native fontScale change
import { Slider, NativeModules } from 'react-native';
<Slider
maximumValue={ 2 }
minimumValue={ 1 }
onValueChange={ (value) => {
NativeModules.AccessibilityManager.setAccessibilityContentSizeMultipliers({
extraSmall: value,
small: value,
medium: value,
large: value,
});
} }
step={ 1.5 } />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment