Skip to content

TextField on Flutter for Desktop Linux is crashing after some input #73406

@krille-chan

Description

@krille-chan

Steps to Reproduce

On all my Applications I create with Flutter for Desktop Linux in the Dev channel using the official GTK Desktop version, I have the problem, that textfields after some time doesnt work anymore. Then you can only remove text using backspace but not type anything anymore in it.

I have tried: TextFormField instead of TextField, using the master channel but nothing helped yet. It makes Flutter for Desktop Linux unusable for me :-(

Minimal application where this happens:

import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Broken TextField',
      home: Scaffold(
        appBar: AppBar(),
        body: Center(
            child: TextField(
          minLines: 1,
          maxLines: 10,
        )),
      ),
    );
  }
}
Logs
[  +90 ms] executing: [/var/home/krille/Applications/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[  +48 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[   +4 ms] 63062a64432cce03315d6b5196fda7912866eb37
[        ] executing: [/var/home/krille/Applications/flutter/] git tag --points-at 63062a64432cce03315d6b5196fda7912866eb37
[  +18 ms] Exit code 0 from: git tag --points-at 63062a64432cce03315d6b5196fda7912866eb37
[        ] 1.26.0-1.0.pre
[  +64 ms] executing: [/var/home/krille/Applications/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[   +9 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] origin/dev
[        ] executing: [/var/home/krille/Applications/flutter/] git ls-remote --get-url origin
[   +7 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] https://github.com/flutter/flutter.git
[  +60 ms] executing: [/var/home/krille/Applications/flutter/] git rev-parse --abbrev-ref HEAD
[  +16 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] dev
[  +73 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[   +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[  +79 ms] executing: /var/home/krille/Android/Sdk/platform-tools/adb devices -l
[  +30 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[   +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[   +1 ms] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +109 ms] executing: /var/home/krille/Android/Sdk/platform-tools/adb devices -l
[  +35 ms] Skipping pub get: version match.
[ +146 ms] Found plugin integration_test at /var/home/krille/Applications/flutter/packages/integration_test/
[+3133 ms] Found plugin integration_test at /var/home/krille/Applications/flutter/packages/integration_test/
[  +10 ms] Generating /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[ +163 ms] Initializing file store
[  +12 ms] Skipping target: gen_localizations
[   +4 ms] complete
[   +8 ms] Launching lib/main.dart on Linux in debug mode...
[   +7 ms] /var/home/krille/Applications/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev
/var/home/krille/Applications/flutter/bin/cache/artifacts/engine/linux-x64/frontend_server.dart.snapshot --sdk-root
/var/home/krille/Applications/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --debugger-module-names --experimental-emit-debug-metadata
--output-dill /tmp/flutter_tools.PVGAGZ/flutter_tool.YVTOXY/app.dill --packages /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/.dart_tool/package_config.json -Ddart.vm.profile=false
-Ddart.vm.product=false --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill build/cache.dill.track.dill
[  +28 ms] Building Linux application...
[  +47 ms] <- compile package:broken_textfield/main.dart
[   +3 ms] executing: [build/linux/debug/] cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux
[  +18 ms] List of devices attached
[   +4 ms] List of devices attached
[ +165 ms] -- Configuring done
[ +110 ms] -- Generating done
[  +80 ms] -- Build files have been written to: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug
[   +6 ms] executing: ninja -C build/linux/debug install
[  +20 ms] ninja: Entering directory `build/linux/debug'
[+22039 ms] [1/5] Generating /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/libflutter_linux_gtk.so,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_basic_message_channel.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_binary_codec.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_binary_messenger.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_dart_project.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_engine.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_json_message_codec.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_json_method_codec.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_message_codec.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_method_call.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_method_channel.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_method_codec.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_method_response.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_plugin_registrar.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_plugin_registry.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_standard_message_codec.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_standard_method_codec.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_string_codec.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_value.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/fl_view.h,
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/linux/flutter/ephemeral/flutter_linux/flutter_linux.h, _phony_
[  +16 ms] [ +117 ms] executing: [/var/home/krille/Applications/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] [  +66 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] [        ] 63062a64432cce03315d6b5196fda7912866eb37
[        ] [   +1 ms] executing: [/var/home/krille/Applications/flutter/] git tag --points-at 63062a64432cce03315d6b5196fda7912866eb37
[        ] [  +23 ms] Exit code 0 from: git tag --points-at 63062a64432cce03315d6b5196fda7912866eb37
[        ] [        ] 1.26.0-1.0.pre
[        ] [  +72 ms] executing: [/var/home/krille/Applications/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[        ] [   +8 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] [        ] origin/dev
[        ] [        ] executing: [/var/home/krille/Applications/flutter/] git ls-remote --get-url origin
[        ] [  +10 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] [        ] https://github.com/flutter/flutter.git
[        ] [  +84 ms] executing: [/var/home/krille/Applications/flutter/] git rev-parse --abbrev-ref HEAD
[        ] [  +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] [        ] dev
[        ] [ +104 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[        ] [   +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] [   +3 ms] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] [   +5 ms] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[        ] [ +122 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] [   +1 ms] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
[        ] [        ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [   +1 ms] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'PubDependencies' is not required, skipping update.
[        ] [ +214 ms] Initializing file store
[        ] [  +23 ms] Done initializing file store
[        ] [  +75 ms] Skipping target: gen_localizations
[        ] [+3114 ms] Skipping target: unpack_linux
[        ] [ +821 ms] kernel_snapshot: Starting due to {InvalidatedReason.inputChanged}
[   +2 ms] [  +41 ms] /var/home/krille/Applications/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev
/var/home/krille/Applications/flutter/bin/cache/artifacts/engine/linux-x64/frontend_server.dart.snapshot --sdk-root
/var/home/krille/Applications/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --target=flutter --no-print-incremental-dependencies -Ddart.vm.profile=false -Ddart.vm.product=false
--enable-asserts --track-widget-creation --packages /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/.dart_tool/package_config.json --output-dill
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/.dart_tool/flutter_build/5a09006c129522f2a7806702c346286c/app.dill --depfile
/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/.dart_tool/flutter_build/5a09006c129522f2a7806702c346286c/kernel_snapshot.d package:broken_textfield/main.dart
[   +2 ms] [+13910 ms] kernel_snapshot: Complete
[        ] [ +820 ms] debug_bundle_linux_assets: Starting due to {InvalidatedReason.inputChanged}
[        ] [ +259 ms] debug_bundle_linux_assets: Complete
[        ] [ +384 ms] Persisting file store
[        ] [  +14 ms] Done persisting file store
[        ] [   +9 ms] build succeeded.
[        ] [  +10 ms] "flutter assemble" took 19,880ms.
[        ] [ +258 ms] ensureAnalyticsSent: 253ms
[        ] [   +5 ms] Running shutdown hooks
[        ] [        ] Shutdown hooks complete
[        ] [   +1 ms] exiting with code 0
[+1203 ms] [2/5] Building CXX object CMakeFiles/broken_textfield.dir/flutter/generated_plugin_registrant.cc.o
[ +253 ms] [3/5] Building CXX object CMakeFiles/broken_textfield.dir/my_application.cc.o
[ +277 ms] [4/5] Linking CXX executable intermediates_do_not_run/broken_textfield
[        ] [4/5] Install the project...
[  +21 ms] -- Install configuration: "Debug"
[  +12 ms] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/broken_textfield
[   +3 ms] -- Set runtime path of "/var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/broken_textfield" to "$ORIGIN/lib"
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/icudtl.dat
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/lib/libflutter_linux_gtk.so
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/kernel_blob.bin
[   +1 ms] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/packages
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/packages/cupertino_icons
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/packages/cupertino_icons/assets
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/fonts
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/fonts/MaterialIcons-Regular.otf
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/AssetManifest.json
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/FontManifest.json
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/NOTICES
[        ] -- Installing: /var/home/krille/Lokal/HADTF/Flutter/broken_textfield/build/linux/debug/bundle/data/flutter_assets/version.json
[  +16 ms] Building Linux application... (completed in 24.3s)
[ +669 ms] Observatory URL on device: http://127.0.0.1:43111/Eo1K1XC93T8=/
[   +4 ms] Caching compiled dill
[  +49 ms] Connecting to service protocol: http://127.0.0.1:43111/Eo1K1XC93T8=/
[   +2 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at http://127.0.0.1:43111/Eo1K1XC93T8=/.
[ +408 ms] ** (broken_textfield:11702): WARNING **: 07:58:47.332: Unable to retrieve framework response: Message is not valid JSON
[        ] ** (broken_textfield:11702): WARNING **: 07:58:47.333: Unable to retrieve framework response: Message is not valid JSON
[        ] ** (broken_textfield:11702): WARNING **: 07:58:47.333: Unable to retrieve framework response: Message is not valid JSON
[   +2 ms] ** (broken_textfield:11702): WARNING **: 07:58:47.333: Unable to retrieve framework response: Message is not valid JSON
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:58:47.333: Unable to retrieve framework response: Message is not valid JSON
[  +25 ms] DDS is listening at http://127.0.0.1:36099/fuatMmXeNKY=/.
[  +87 ms] Successfully connected to service protocol: http://127.0.0.1:43111/Eo1K1XC93T8=/
[   +2 ms] ** (broken_textfield:11702): WARNING **: 07:58:47.468: Event response for event id 9288712887773616 received, but event was received out of order, or is unknown.
[  +20 ms] DevFS: Creating new filesystem on the device (null)
[  +20 ms] DevFS: Created new filesystem on the device (file:///tmp/broken_textfieldCAYLRL/broken_textfield/)
[   +2 ms] Updating assets
[ +158 ms] Syncing files to device Linux...
[   +4 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +3 ms] <- recompile package:broken_textfield/main.dart 3969a773-8380-497f-a80f-8493cff85d4e
[        ] <- 3969a773-8380-497f-a80f-8493cff85d4e
[ +132 ms] Updating files.
[        ] DevFS: Sync finished
[   +2 ms] Syncing files to device Linux... (completed in 142ms)
[        ] Synced 0.0MB.
[   +1 ms] <- accept
[   +8 ms] Connected to _flutterView/0x2154740.
[   +1 ms] Flutter run key commands.
[   +2 ms] r Hot reload. 🔥🔥🔥
[   +2 ms] R Hot restart.
[        ] h Repeat this help message.
[        ] d Detach (terminate "flutter run" but leave application running).
[        ] c Clear the screen
[        ] q Quit (terminate the application on the device).
[        ] An Observatory debugger and profiler on Linux is available at: http://127.0.0.1:36099/fuatMmXeNKY=/
[        ] Running with unsound null safety
[        ] For more information see https://dart.dev/null-safety/unsound-null-safety
[+25970 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.806: Event response for event id 13229358266782200 received, but event was received out of order, or is unknown.
[   +6 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.811: Event response for event id 9007233616122360 received, but event was received out of order, or is unknown.
[   +4 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.817: Event response for event id 11259033429807632 received, but event was received out of order, or is unknown.
[   +2 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.820: Event response for event id 11540508406518288 received, but event was received out of order, or is unknown.
[  +18 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.839: Event response for event id 13229362561749552 received, but event was received out of order, or is unknown.
[   +5 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.843: Event response for event id 12384933336650288 received, but event was received out of order, or is unknown.
[  +10 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.854: Event response for event id 9007237911089728 received, but event was received out of order, or is unknown.
[  +77 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.932: Event response for event id 11540512701485712 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.933: Event response for event id 18295907847574160 received, but event was received out of order, or is unknown.
[  +22 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.956: Event response for event id 12384937631617704 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.957: Event response for event id 11821983383229096 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.958: Event response for event id 11259037724775080 received, but event was received out of order, or is unknown.
[   +2 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.961: Event response for event id 8725758639411880 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:13.961: Event response for event id 13229358266782376 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:13.963: Event response for event id 12947883290071720 received, but event was received out of order, or is unknown.
[ +131 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.094: Event response for event id 8725762934379312 received, but event was received out of order, or is unknown.
[   +2 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.096: Event response for event id 13229362561749808 received, but event was received out of order, or is unknown.
[   +3 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.100: Event response for event id 12384933336650544 received, but event was received out of order, or is unknown.
[   +2 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.103: Event response for event id 12947887585039152 received, but event was received out of order, or is unknown.
[  +46 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.149: Event response for event id 12384937631617896 received, but event was received out of order, or is unknown.
[   +3 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.153: Event response for event id 8725758639412072 received, but event was received out of order, or is unknown.
[   +6 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.157: Event response for event id 13229358266782568 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:14.160: Event response for event id 12947883290071912 received, but event was received out of order, or is unknown.
[  +26 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.187: Event response for event id 11259033429808016 received, but event was received out of order, or is unknown.
[  +16 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.204: Event response for event id 11821987678196640 received, but event was received out of order, or is unknown.
[  +40 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.244: Event response for event id 10977558453097416 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:14.245: Event response for event id 8725762934379464 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.246: Event response for event id 13229362561749960 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.248: Event response for event id 12947887585039304 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.249: Event response for event id 12384933336650696 received, but event was received out of order, or is unknown.
[  +18 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.268: Event response for event id 11821983383229408 received, but event was received out of order, or is unknown.
[  +19 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.287: Event response for event id 11259037724775408 received, but event was received out of order, or is unknown.
[  +12 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.300: Event response for event id 10977562748064768 received, but event was received out of order, or is unknown.
[  +31 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.332: Event response for event id 12384937631618080 received, but event was received out of order, or is unknown.
[  +15 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.348: Event response for event id 11821987678196784 received, but event was received out of order, or is unknown.
[  +39 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.387: Event response for event id 11540508406518872 received, but event was received out of order, or is unknown.
[  +17 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.405: Event response for event id 18295912142541928 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.407: Event response for event id 11259033429808232 received, but event was received out of order, or is unknown.
[  +30 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.436: Event response for event id 18295907847574664 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.438: Event response for event id 12384933336650888 received, but event was received out of order, or is unknown.
[  +21 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.460: Event response for event id 11540512701486240 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.461: Event response for event id 11821983383229600 received, but event was received out of order, or is unknown.
[  +13 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.475: Event response for event id 11259037724775600 received, but event was received out of order, or is unknown.
[  +48 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.524: Event response for event id 12384937631618272 received, but event was received out of order, or is unknown.
[  +23 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.547: Event response for event id 11821987678196984 received, but event was received out of order, or is unknown.
[  +16 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.563: Event response for event id 11259033429808392 received, but event was received out of order, or is unknown.
[  +27 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.590: Event response for event id 11540508406519072 received, but event was received out of order, or is unknown.
[  +28 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.620: Event response for event id 10977558453097792 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:14.620: Event response for event id 12384933336651072 received, but event was received out of order, or is unknown.
[  +23 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.643: Event response for event id 11540512701486424 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.644: Event response for event id 11821983383229784 received, but event was received out of order, or is unknown.
[  +16 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.660: Event response for event id 11259037724775784 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:14.661: Event response for event id 10977562748065128 received, but event was received out of order, or is unknown.
[  +66 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.727: Event response for event id 12384937631618472 received, but event was received out of order, or is unknown.
[  +14 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.741: Event response for event id 11821987678197176 received, but event was received out of order, or is unknown.
[  +21 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.764: Event response for event id 11259033429808592 received, but event was received out of order, or is unknown.
[  +31 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.795: Event response for event id 10977558453097968 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:14.796: Event response for event id 11540508406519280 received, but event was received out of order, or is unknown.
[  +58 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.854: Event response for event id 11540512701486632 received, but event was received out of order, or is unknown.
[   +4 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.858: Event response for event id 11821983383229992 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.860: Event response for event id 12384933336651304 received, but event was received out of order, or is unknown.
[   +6 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.867: Event response for event id 11259037724775992 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:14.868: Event response for event id 10977562748065336 received, but event was received out of order, or is unknown.
[  +63 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.931: Event response for event id 12384937631618680 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.933: Event response for event id 8725758639412856 received, but event was received out of order, or is unknown.
[  +24 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.957: Event response for event id 11821987678197392 received, but event was received out of order, or is unknown.
[   +3 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.960: Event response for event id 10977558453098128 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.963: Event response for event id 11259033429808784 received, but event was received out of order, or is unknown.
[   +2 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.965: Event response for event id 11540508406519440 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.967: Event response for event id 13229358266783376 received, but event was received out of order, or is unknown.
[  +20 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.987: Event response for event id 8725762934380208 received, but event was received out of order, or is unknown.
[  +10 ms] ** (broken_textfield:11702): WARNING **: 07:59:14.996: Event response for event id 13229362561750712 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:14.998: Event response for event id 12384933336651448 received, but event was received out of order, or is unknown.
[  +42 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.040: Event response for event id 11540512701486816 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.041: Event response for event id 11821983383230176 received, but event was received out of order, or is unknown.
[   +9 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.052: Event response for event id 10977562748065520 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.053: Event response for event id 11259037724776176 received, but event was received out of order, or is unknown.
[  +47 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.100: Event response for event id 12384937631618848 received, but event was received out of order, or is unknown.
[   +2 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.103: Event response for event id 12947883290072864 received, but event was received out of order, or is unknown.
[  +15 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.117: Event response for event id 13229358266783536 received, but event was received out of order, or is unknown.
[  +14 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.132: Event response for event id 11821987678197568 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.134: Event response for event id 13229362561750848 received, but event was received out of order, or is unknown.
[  +31 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.165: Event response for event id 11259033429808992 received, but event was received out of order, or is unknown.
[   +7 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.172: Event response for event id 12947887585040232 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:15.173: Event response for event id 12384933336651624 received, but event was received out of order, or is unknown.
[  +14 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.187: Event response for event id 10977558453098360 received, but event was received out of order, or is unknown.
[  +72 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.259: Event response for event id 11259037724776384 received, but event was received out of order, or is unknown.
[   +1 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.261: Event response for event id 11821983383230400 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:15.262: Event response for event id 12384937631619008 received, but event was received out of order, or is unknown.
[        ] ** (broken_textfield:11702): WARNING **: 07:59:15.263: Event response for event id 10977562748065728 received, but event was received out of order, or is unknown.
[  +23 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.286: Event response for event id 11821987678197720 received, but event was received out of order, or is unknown.
[  +29 ms] ** (broken_textfield:11702): WARNING **: 07:59:15.316: Event response for event id 18295912142542840 received, but event was received out of order, or is unknown.
Analyzing app...                                                        
No issues found! (ran in 21.2s)
[✓] Flutter (Channel dev, 1.26.0-1.0.pre, on Linux, locale C.UTF-8)
    • Flutter version 1.26.0-1.0.pre at /var/home/krille/Applications/flutter
    • Framework revision 63062a6443 (3 weeks ago), 2020-12-13 23:19:13 +0800
    • Engine revision 4797b06652
    • Dart version 2.12.0 (build 2.12.0-141.0.dev)

[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
    • Android SDK at /var/home/krille/Android/Sdk
    • Platform android-30, build-tools 30.0.2
    • Java binary at: /var/home/krille/Applications/android-studio/jre/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
    • All Android licenses accepted.

[✓] Chrome - develop for the web
    • Chrome at google-chrome

[✓] Linux toolchain - develop for Linux desktop
    • clang version 11.0.0 (Fedora 11.0.0-2.fc33)
    • cmake version 3.18.4
    • ninja version 1.10.1
    • pkg-config version 1.7.3

[✓] Android Studio
    • Android Studio at /var/home/krille/Applications/android-studio
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • android-studio-dir = /var/home/krille/Applications/android-studio
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)

[✓] Connected device (2 available)
    • Linux (desktop) • linux  • linux-x64      • Linux
    • Chrome (web)    • chrome • web-javascript • Google Chrome 87.0.4280.88

• No issues found!

Metadata

Metadata

Assignees

Labels

P1High-priority issues at the top of the work lista: desktopRunning on desktopa: text inputEntering text in a text field or keyboard related problemsf: material designflutter/packages/flutter/material repository.found in release: 1.26Found to occur in 1.26frameworkflutter/packages/flutter repository. See also f: labels.has reproducible stepsThe issue has been confirmed reproducible and is ready to work onplatform-linuxBuilding on or for Linux specifically

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions