Alex Baker
Alex Baker
Hey, I'm getting this error too @close2 My code: ```dart main(List rawArgs) async { Logger.root.level = Level.ALL; Logger.root.onRecord.listen((LogRecord rec) { print('${rec.level.name}: ${rec.time}: ${rec.message}'); }); String username = '[email protected]'; Map env...
> Is there a standardized way of describing the setup phase in PGN format? I have implemented the Musketeer variant for fairy-stockfish and pychess-variants, and the approach I went for...
The use case I'm referring to is when you enter something that doesn't match any suggestions, and you want to call a callback with that string. (i.e. you press enter...
Or maybe `TypeAheadField.onSubmitted`, to match this: https://api.flutter.dev/flutter/material/TextField/onSubmitted.html ?
> You are probably using `path_provider` which relies on platform channels. They are probably not initialized yet when you access the path. > > Edit: You should get the path...
> @alexobviously, > > I don't know what you're trying to accomplish, but something is wrong. You're trying to access asset from filesystem. Flutter assets are bundled inside executable files...
> > > @alexobviously, > > > I don't know what you're trying to accomplish, but something is wrong. You're trying to access asset from filesystem. Flutter assets are bundled...
This is also causing problems for me, since I have a class that uses two libraries that have classes with the same name, so obviously i have to `import as`...
Any progress on this? Just encountered this when adding the `constant_identifier_names` lint on a project with a bunch of notCamelCase enum fields. Is there any particular reason why `field_rename` in...
I figured out roughly how to do this on android: ```kotlin import android.content.Context import android.media.AudioDeviceInfo import android.media.AudioManager // ... "listInputDevices" -> { val audioManager: AudioManager = activity!!.getSystemService(Context.AUDIO_SERVICE) as AudioManager; val...