Philip Peitsch
Philip Peitsch
For anyone looking for hints towards a typescript solution, it appears possible using the typescript compiler api: https://github.com/Microsoft/TypeScript/wiki/Using-the-Compiler-API An untested example of a custom transform function might be something like:...
Just noting that I had to wait until after I'd hidden the splash screen in order for `StatusBar.styleLightContent();` to work for me on iOS. I suspect this is being caused...
@breautek interesting to hear... thanks for the tip! Just to confirm, are you meaning `cordova-ios` version `6.1.1`? `[email protected]` is the version I'm currently running, though I still have the splash...
@breautek no worries... it's all been useful information to know! I'm running those exact versions, so yeah... issue is still there. I presume based on what you've said that this...
Interesting... I've generally used `reloadCurrent` when transitioning from the edit page => new page for achieving this effect. E.g., ``` click to go edit page ``` A quick dig, and...
Oh, p.s., that Fiddle is using v4 of the framework 😅 Would suggest using these links instead: * https://unpkg.com/[email protected]/framework7-bundle.js * https://unpkg.com/[email protected]/framework7-bundle.css
Right. What you've effectively hit here is that the page is needed during animation only, but if `history: false`, it should be removed from the DOM after animation is complete.
At a glance, it seems like something as simple as this in `navigate.js`  I don't have an easy way to build and check though 🙈
Are these scans being run via `startScanWithOptions` and setting the `reportDuplicates` flag to true? If just `scan` or `startScan` is being used, likely what's happening is that iOS will filter...
@favnec5 small correction, with iOS this plugin does allow background scanning to occur 🙂 See https://github.com/don/cordova-plugin-ble-central/#background-scanning-and-notifications-on-ios for implementation details!