UNPKG

react-native-notificare-push-ui

Version:
14 lines (11 loc) 564 B
import type { ConfigPlugin } from 'expo/config-plugins'; import { NotificarePushUIPluginProps } from '../types/types'; import { withNotificarePushUIAndroidStyle } from './withNotificarePushUIAndroidStyle'; import { withNotificarePushUIAndroidLocalizable } from './withNotificarePushUIAndroidLocalizable'; export const withNotificarePushUIAndroid: ConfigPlugin< NotificarePushUIPluginProps > = (config, props) => { config = withNotificarePushUIAndroidStyle(config, props); config = withNotificarePushUIAndroidLocalizable(config, props); return config; };