ListWheelScrollView not woking sometime in web - flutter

This problem occurred on the web for me when using CupertinoDatePicker
And it seems that the main problem is from the ListWheelScrollView
please guide me
Flutter 3.0.5 • channel stable • https://github.com/flutter/flutter.git
Framework • revision f1875d570e (4 months ago) • 2022-07-13 11:24:16 -0700
Engine • revision e85ea0e79c
Tools • Dart 2.17.6 • DevTools 2.12.2
I tested all the code in a new project and there is nothing else inside the main page, so it is not a dependency

Related

ChromeProxyService: Failed to evaluate expression how to solve?

I'm debugging a code but every time I try to see the variable values it shows this message. does anyone know how to resolve?
Flutter 3.3.10 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 135454af32 (5 weeks ago) • 2022-12-15 07:36:55 -0800
Engine • revision 3316dd8728
Tools • Dart 2.18.6 • DevTools 2.15.0
google chrome version 109.0.5414.75 64 bit
I searched the internet and it was telling me to update flutter to a version greater than 3.0 and google chrome to the newest version and even so it continues to give this error. I tried to run the project in another browser but the same error message appears. in short, none of the solutions I've found to date allowed. I even formatted the computer and today I have Windows 11

The 'Pods-Runner' target has transitive dependencies that include statically linked binaries: Mux-Stats-AVPlayer/XCFramework/MUXSDKStats.xcframework

Flutter is already up to date on channel stable
Flutter 3.3.8 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 52b3dc25f6 (2 weeks ago) • 2022-11-09 12:09:26 +0800
Engine • revision 857bd6b74c
Tools • Dart 2.18.4 • DevTools 2.15.0
And I have this problem when I run my project with Pod Install.
Anyone know how can I solve it?

dart fix, giving different results based on the machine it is run on

I am seeing a behavior I struggle to understand right now, regarding dart fix.
On my machine, I have a script doing a bunch of dart code generation inside one of my package's folder. After the code is being generated, if I run the dart fix --dry-run command this is what I get:
Computing fixes in design_system (dry run)...
16 proposed fixes in 2 files.
lib/src/constants/file1.dart
prefer_const_constructors - 4 fixes
unused_import - 1 fix
lib/src/constants/file2.dart
prefer_const_constructors - 10 fixes
unused_import - 1 fix
and this is my environment:
[✓] Flutter (Channel stable, 3.0.1, on macOS 12.1 21C52 darwin-arm, locale en-FR)
• Flutter version 3.0.1 at /Users/adrien.padol/fvm/versions/stable
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision fb57da5f94 (3 months ago), 2022-05-19 15:50:29 -0700
• Engine revision caaafc5604
• Dart version 2.17.1
• DevTools version 2.12.2
Now, this same script, is run (on the same version of the sources) on a Github hosted agent, and this is what I get:
Computing fixes in design_system (dry run)...
4 proposed fixes in 4 files.
lib/src/widgets/data_display/file1.dart
type_init_formals - 1 fix
lib/src/widgets/data_entry/file2.dart
unnecessary_lambdas - 1 fix
lib/src/widgets/feedback/file3.dart
type_init_formals - 1 fix
lib/src/widgets/navigation_components/file4.dart
type_init_formals - 1 fix
Yet the environment seems to be the same (outside of the agent being a linux machine):
[✓] Flutter (Channel stable, 3.0.1, on Ubuntu 20.04.4 LTS 5.15.0-1014-azure, locale C.UTF-8)
• Flutter version 3.0.1 at /opt/hostedtoolcache/flutter/stable-3.0.1-x64
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision fb57da5f94 (3 months ago), 2022-05-19 15:50:29 -0700
• Engine revision caaafc5604
• Dart version 2.17.1
• DevTools version 2.12.2
So, for the same script, and the same source code, I manage to get two completely different outputs of the dart fix command, and I don't really understand why this is happenning ...
Any idea ?
Thanks !

'ffmpegkit/FFmpegKitConfig.h' file not found

While trying to build my Flutter App in Xcode im getting following error
'ffmpegkit/FFmpegKitConfig.h' file not found
The App is running successfully in VS-Code .
I tried already hours to solve it. But I did not find any solution.
Flutter 2.10.3 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 7e9793dee1 (3 months ago) • 2022-03-02 11:23:12 -0600
Engine • revision bd539267b4
Tools • Dart 2.16.1 • DevTools 2.9.2
If more information needed please let me know.
I finally found the issue . The Problem was that for the package that I installed
https://pub.dev/packages/video_editor/example
I changed the iOS version in podfile to 13.0. And I forgot to change the version in my xcodeworkspace.

How to hide android navigation-bar(back/home/menu) in Flutter

I want to build an app without native navigation bar, like back/home/recent. I would not use fullscreen mode, for that I need to display the status bar. In Flutter, I use the code SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.top]); it works for the beginning, bottom bar comes back when tap anywhere on screen.
My Flutter version:
Flutter 1.5.4-hotfix.2 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 7a4c33425d (3 weeks ago) • 2019-04-29 11:05:24 -0700
Engine • revision 52c7a1e849
Tools • Dart 2.3.0 (build 2.3.0-dev.0.5 a1668566e5)