Valentin Prugnaud

Results 18 comments of Valentin Prugnaud

Is it possible to create two versions of the package? One for 4.2 and the other one for 5.0?

Try with a space between fields, like this: `php artisan generate:scaffold --fields="customer_id:int, title:string" form`

My bad, I never used this command, I prefer to create my views manually. But it appears that this is perfectly normal, if you look at the file `src /...

Try adding a space after the comma, like this : ``` artisan generate:scaffold create_sermon_mediaes_table --fields="sermon_id:integer, author_id:integer, album_id:integer, scheduleddate:date, description:string[80]" ```

PHPUnit generator would be awesome !

I can confirm this issue is still happening on iOS 13, with NativeScript Vue 2.4.0, tns-core-modules 6.2.0-next-2019-10-08-131118-02 and tns CLI version 6.1.2

Seems like there is a pending PR that would solve the problem on the underlying library, QBImagePicker. But that library hasn't been updated in a few years :/ https://github.com/questbeat/QBImagePicker/pull/180#ref-pullrequest-398985930

I used a workaround in the meantime. Install `@sentry/tracing` and setup the module like so: ```typescript SentryModule.forRoot({ enabled: true, dsn: process.env.SENTRY_DSN, debug: false, environment: 'production', integrations: [ new Sentry.Integrations.Http({ tracing:...