Jacob Richman
Jacob Richman
Fix created constructors for dart:html types so that they stop generating uneccessary code that will probably mess up element rendering. The problem is we need to track that native fields...
Motivation from a Flutter user group post: "I've been seeing this a lot with new devs. Don't needlessly use Containers. Wrapping a widget in Container and setting no other parameters...
## Use case Give all users the benefit of hot reload on file chnge. Flutter IDE users get hot reload on file change due to logic in the VSCode and...
Using // to control line breaking of method arguments works nicely for arrays but doesn't work for array like method arguments. it would be nice if the same technique works....
# Workspace feature ## Description Support shared resolution between packages of a workspace / mono-repo. Workspaces are tightly related packages that are developed and released together. We have seen the...
`org.apache.commons.lang3.StringUtils` is prohibited by the flutter intellij plugin for likely plausible reasons. A good replacement is `com.google.common.base.Joiner` Using generated code that imports org.apache.commons.lang3.StringUtils results in the following output. Fyi @scheglov...
debugCheckElevationsEnabled is a new service extension to help debug elevation issues. We should support it in devtools as well as possibly directly in intellij and vscode. Related Flutter CL adding...
There are cases such as displaying doc comments, autocompleting expressions, and getting types where having access to the analyzer service is needed. TBD: the most robust way to wire up...
Show a mirror of the device within intellij and allow selection from the mirror. In particular, this will improve selection when dealing with physical devices.
Investigate doing something like what flutter/flutter does - solve for related packages at once, and them move those versions into the related pubspec / lock files. This is probably not...