Nathanael Anderson

Results 444 comments of Nathanael Anderson

I love pull requests; if you wanted to start on typings I would love it...

I believe the file generated is fully PDF/A compatible; all content and fonts are embedded in the pdf.

Ah, after doing a bit more research fR doesn't have built in support for PDF/A. However, if your company wanted to sponsor the feature to add /A support into fluentReports...

You can add some bench marks into the code; rename the existing function to `_setPropertyValues` and create a new `setPropertyValues` and add `const x = Date.now(); this._setPropertyValues(...); y = Date.now();...

@bradmartin - They have the EXACT same issue with that project. See issue #167 on that repo, they also linked to the SO posts and determined their is nothing they...

@SephReed - You are the only one I know of doing development with out any xml/html (or some time of view type files). I've done it for some things (like...

Refreshing the CSS -- Its an "internal" function, but it has been the same since like NS3 days... :grinning: `page._onCssStateChange();` I should make a note the `page` variable is the...

@SephReed - Here is the code I put in the app.ts file: ``` import { topmost } from "tns-core-modules/ui/frame"; application.on('livesync', (args) => { let curPage = topmost().currentPage; if (curPage) {...

As for the glob. Open up the `webpack.config.js` find the section around like 250; and add `{ from: { glob: '**/*.css' } },` to this: ``` new CopyWebpackPlugin( [ {...

Instead we should add the additional checks that are used by other frameworks/plugins to beef up the detection of a simulator vs real device so the original `export function isRealDevice():...