1.0.5 • Published 7 years ago

react-native-setting v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

react-native-setting

import Setting from 'react-native-setting';

//获取通知设置
Setting.isNotificationEnable((err, enable) => {
	console.log('notification enable:' + enable);
});

//打开设置
Setting.openNotificationSetting();

//禁止锁屏
Setting.disableIdleTimer()

//恢复锁屏
Setting.enableIdleTimer()