Michel Feinstein

Results 192 comments of Michel Feinstein

I don't know if it's related, but I get a slightly different error: >Encountered error while creating the IPA: Try distributing the app in Xcode: "open /Users/user/Projects/project_flutter/build/ios/archive/Runner.xcarchive"

Hi, I don't think the Menu should be part of the leading. The specs show a Menu and a FAB, togheter, and even specify them together.

Another thing, the `leading` `trailing` and others should be wrapped into an `IconTheme`, otherwise the destinations have a colored outline and the leading have a greyed one.

No need to fix, it's just a preference of style. Copying to a local variable is safer, but just for extreme cases.

We can see a log from logcat that might indicate the origin of the problem: ```console type=1400 audit(0.0:311): avc: denied { read } for name="version" dev="proc" ino=4026532001 scontext=u:r:untrusted_app:s0:c173,c256,c512,c768 tcontext=u:object_r:proc_version:s0 tclass=file...

@felangel one more example on how this could be useful. I wanted to use this template: ``` defaults.project={{#sentryProjectName}}{{sentryProjectName}}{{/sentryProjectName}}{{^sentryProjectName}}{{packageName}}{{/sentryProjectName}} ``` But it doesn't work because `sentryProjectName` is always a string, so...

Hi @felangel, no it doesn't. In the Brick plugin I need to define 1 variable for each platform. But what I want is an array, where I can select the...

I want access to the `dio` instance, the only way I could find so far is by doing this ugly hack: ```dart factory AuthRemoteDataSource(Dio dio, {String? baseUrl}) => _AuthRemoteDataSource._(dio, dio,...

A page about `HtmlElementView` should also explain how it can be used to embed normal websites inside Flutter, not only for images.