-
-
Notifications
You must be signed in to change notification settings - Fork 59
Closed
Description
Environment
✔ Component nativescript has 6.4.0-2020-01-30-145311-14104 version and is up to date.
✔ Component tns-core-modules has 6.3.2 version and is up to date.
✔ Component tns-android has 6.3.1 version and is up to date.
✔ Component tns-ios has 6.3.0 version and is up to date.
Describe the bug
I am trying to implement DKImagePickerController library in one of my project. I have added in my app's Podfile
like this:
pod 'DKImagePickerController'
It's working as expected but camera icon is missing. But if you run demo project from that library then that icon will show. Please check the attached screenshorts
let picker = DKImagePickerController.new();
picker.assetType = DKImagePickerControllerAssetType.AllPhotos;
picker.singleSelect = true;
picker.showsCancelButton = true;
picker.didSelectAssets = ((res) => {
})
From NativeScript: | Demo project from repo: |
---|---|
![]() |
![]() |
What may be the reason? Please give me advice.
Thanks
Exigency