Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarified methods usage #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ To get the result override onActivityResult method:

| Method | usage |
| ------ | ------ |
| ``` withActivity(activity: Activity) ``` | used to set the activity will recive the result |
| ``` withFragment(fragment: Fragment) ``` | used to set the fragment will recive the result |
| ``` withActivity(activity: Activity) ``` | used to set the activity which will receive the result |
| ``` withFragment(fragment: Fragment) ``` | used to set the fragment which will receive the result |
| ``` requestCode(requestCode: Int) ``` | used to set the request code for the result |
| ``` limit(limit: Int) ``` | used to set the max number of images to select |
| ``` disableCamera(disableCamera: Boolean) ``` | by default the value of disableCamera is false, it determine to allow camera captures or not |
| ``` cameraDirect(cameraDirect: Boolean) ``` | by default the value of cameraDirect is false, it determine to open the camera before showing the picker or not |
| ``` disableCamera(disableCamera: Boolean) ``` | by default the value of disableCamera is false, it determines whether to allow camera captures or not |
| ``` cameraDirect(cameraDirect: Boolean) ``` | by default the value of cameraDirect is false, it determines whether to open the camera before showing the picker or not |


## UI customization
Expand Down