Guerby Duval
Guerby Duval
I fixed the issue by setting ``` if (isAndroid) { try { Theme.setMode(Theme.Light); } catch (e) { console.log("Error setting Theme to light mode", e); } } ``` However if I...
@epiphaneSpecter open the link that returns the error in the browser to make sure you call the right link. If the link returns any error code like 404 Symfony won't...
You should have in your `config\packages\nelmio_cors.yaml`: ``` nelmio_cors: defaults: origin_regex: true allow_origin: ['%env(CORS_ALLOW_ORIGIN)%'] allow_methods: ['GET', 'OPTIONS', 'POST', 'PUT', 'PATCH', 'DELETE'] allow_headers: ['Content-Type', 'Authorization'] expose_headers: ['Link'] max_age: 3600 paths: '^/': null...
I just the same error. After spending 1 hour blaming it on this bundle, I just realized there was any problem with the configuration. I was just calling the wrong...
Sorry, I don't understand the meaning of **PR**
Hi, Actually the library is already doing the work. I managed to modify the code to make `_appearance` an array. But as I don't know how the pdf signing code...
Reading the method `_generate_signature_in_document` comments I can see you said the same thing I wrote. But why isn't it possible to call `_generate_signature_in_document` again to add the other signature without...
Hi @dealfonso, Thanks for your reply. I already had a function like `sign_document`. What it did globally is add a certificate, save the pdf in memory and add the other...
Hi @dealfonso, Could you solve the problem please?
I actually did set it to stop ``` _audioPlayer = AudioPlayer(); _audioPlayer.setReleaseMode(ReleaseMode.stop); ``` but it does not work.