Brett Sutton
Brett Sutton
When using lint 1.5.1 In the following switch statement there are two cases that both check if char = ' '. The lint incorrectly marks the second test as invariant_booleans...
# Too many false positives. # Using the pedantic package for the unawaited function doesn't make code better readable # # pedantic: enabled # https://dart-lang.github.io/linter/lints/unawaited_futures.html # - unawaited_futures As above...
It would be easier to use the cli tooling if it was published on pub.dev You can then just do: pub global activate dartpad_gen dartpad_gen
Any chance you could publish the null safe version?
Just wondering if you have looked at SWIG for generating the bindings. http://swig.org/ My understanding is that SWIG parses C and Objective-C headers and generates an intermediate representation. From this...
I'm considering using dart native however there appears to be only minimal documentation and only trivial examples. Are you able to provide some extended examples that call common iOS/Android funtions...
It's it possible to call directly into the iOS native SDK without writing objective C bridging code? I maintain the sounds package and would like to remove all of the...
I note in the readme you mention a couple of tools (scour, usvg) as options to clean up svg files. We had a no. of svg files that contained css...
Probably with some type of criticality rating.
We have a class that contains fields that we need to fetch from the server but we can't send back to the server. As such we want to be able...