From 7b8e3d1a999ae3bfa468e696f290095078bcf020 Mon Sep 17 00:00:00 2001 From: Ritesh Shukla2 Date: Sat, 1 Jun 2024 16:01:03 +0530 Subject: [PATCH] Update Readme.md --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 983b4dc..431a576 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # react-native-kiosk -A Library for setting up kiosk mode with react native +A Library for setting up kiosk mode on Android with react native ## Installation @@ -11,16 +11,17 @@ npm install react-native-kiosk ## Usage ```js -import { multiply } from 'react-native-kiosk'; +import { enableKioskMode, disableKioskMode } from 'react-native-kiosk'; -// ... +// Enable Kiosk Mode +enableKioskMode(); + +// Disable Kiosk Mode +disableKioskMode(); -const result = await multiply(3, 7); ``` -## Contributing -See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow. ## License