Bug Fixes
- connect ts declaration with @types/react-native (#627) (a87c1dd)
- don't pass all props down to Text (a95eb10)
- flow: merge types with the props of the component used internally (0294209)
- flow: use exact types when possible (f295272)
Deprecations
Flow types are now exported from the main entry instead of /types
. Update your code from:
import type { Theme } from 'react-native-paper/types';
to:
import { type Theme } from 'react-native-paper';