Adrián Brito Pacheco
Adrián Brito Pacheco
My `package.json` @sighrobot ` { "name": "test", "version": "0.1.0", "private": true, "dependencies": { "boundless-arrow-key-navigation": "^1.1.0", "prop-types": "^15.5.10", "react": "^15.6.1", "react-dom": "^15.6.1", "react-redux": "^5.0.6", "react-router": "^4.2.0", "react-router-dom": "^4.2.2", "react-scripts": "1.0.12", "redux":...
@sighrobot I create new test react app. Steps: 1) create-react-app react-test-boundless. 2) Install boundless/ArrowKeyNavigation: npm i --save boundless-arrow-key-navigation 3) In App.js `import ArrowKeyNavigation from 'boundless-arrow-key-navigation';` and add ` Horizontal-only {this.state.items.map((item)...
Oh, it's working :) I have executed eject in the project: yarn eject With this command all the build dependencies, configs, and scripts are moved right into project. At this...
Hi @harrisbaitalrayan You have to modify **accessKey** in providers/survey/survey.ts. Then you can use the Private API methods from SurveyJS. If you need any other method that is not defined in...
@harrisbaitalrayan Can you upload the code to a repository to take a look at it? Thanks!
Hi @AndroidDeveloperLB The problem is that both methods are being called to generate the video in this part of the code ``` // Basic implementation private fun basicVideoCreation() { videoFile...
The option let ext = ['*']; // Allow any file type. This does not work either. I have fixed it in the PR: https://github.com/hinddeep/capacitor-file-selector/pull/4
Hello @peterarends You can also create the blob type by this way `const blob = new Blob([data.item(i)], {type: data.item(i).type});`