Dale King
Dale King
In [this section of the Readme.md](https://github.com/Transmode/gradle-docker#task-configuration-through-task-properties) it says: > The following example task will tag the docker image as org.acme/bar:13.0 But I believe according to the snippet below that statement...
Looking through the code I see [this comment](https://github.com/kshoji/javax.sound.midi-for-Android/blob/develop/javax.sound.midi/src/jp/kshoji/javax/sound/midi/io/StandardMidiFileReader.java#L327) which is basically asking how do you handle this in a running status case. The answer is you don't because none of...
Readme says: Now in your Dart code, you can use: ``` import 'package:flutter_full_pdf_viewer/flutter_full_pdf_viewer.dart'; import 'package:flutter_full_pdf_viewer/full_pdf_viewer_plugin.dart'; import 'package:flutter_full_pdf_viewer/full_pdf_viewer_scaffold.dart'; ``` But that is redundant. The first import is just a file that...
**Description** Need semantics to be able to verify if the view is refreshing. There is no good way to test this.
The link to get more info on the configuration file in the readme is a 404
Similar to #8, but requires a different solution There is no good Swift way to call a copy methods on a Kotlin data class because the default parameter values are...
Wondering if it would be possible to actually add espresso style testing: - Verify attributes of views with matchers - Allow some interaction with the views, e.g. click a button...
The quick start example (https://github.com/isar/isar#2-annotate-a-collection) contains an error and if you cut and paste the code it doesn't work. The status property looks like this: ``` @enumerated Status status =...
Say I have a class that only has a constructor with an optional parameter like so: ``` public class Foo { public Foo(int i = -1) { } } ```...
Per the example the generated toString looks like this: ``` @override String toString() { return 'Person{' + ' id: $id,' + ' _firstName: $_firstName,' + ' _lastName: $_lastName,' + '...