Alex Li

Results 711 comments of Alex Li

> @christopherfujino could we promote this for hotfix on stable as it is a breaking change? 👀 Submitted #120679.

请尝试 `HttpClient` 是否能复现相关情况。

On the Android side the brightness update event almost useless...As our testing team told us those devices (XiaoMi [MIUI]/MeiZu [flyme]) which support change brightness through quick settings or control panel,...

cc @justinmc This is another issue related to baseline.

Previously we tried to migrate to pure Dart but failed with the current implementation. IMO this will require a federated platform architecture for the plugin. We'll first try to update...

AFAICT deprecating `.network` doesn't help with https://github.com/flutter/flutter/issues/121927 but causes a lot of cost for migrations. The `dataSource` will eventually be `String`, so what we can do better is to use...

https://stackoverflow.com/a/74410353/17742614 describes the root cause of the issue. Adding `androidx.window:window` and `androidx.window:window-java` to `android/app/build.gradle` will solve the issue temporarily. ```gradle dependencies { implementation 'androidx.window:window:1.0.0' implementation 'androidx.window:window-java:1.0.0' coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.2' } ```

Here I want to quote one paragraph we've written in the proposal: > Open-source projects are full of challenges, this is a common sense of open-source contributors and people who...

Pseudo: ```dart const baseDartUrl = 'https://dart.dev'; const baseFlutterUrl = 'https://flutter.dev'; void main() async { final dio = Dio(BaseOptions(baseUrl: baseDartUrl)); final requestWithDart = await dio.get('/'); final requestWithFlutter = await dio.get('$baseFlutterUrl/'); }...

> I have a genetic method that makes requests to a complete url variable. I remember passing the variable to `get` and it would append my base url to the...