Skip to content

Instantly share code, notes, and snippets.

@loic-sharma
Last active April 11, 2025 21:00
Show Gist options
  • Save loic-sharma/585d3904b112843937a0dbed860ad12e to your computer and use it in GitHub Desktop.
Save loic-sharma/585d3904b112843937a0dbed860ad12e to your computer and use it in GitHub Desktop.
Top text input issues in last 90 days

Top text input issues in last 90 days

These are the team-text-input and a: text input issues that had the most reactions from January 11, 2025 to April 11, 2025.

Title Category New reactions
Ability to change the keyboard language programmatically flutter/flutter#99606 Keyboard language 9
Hot restart while keyboard is up leaves the keyboard up flutter/flutter#10713 Software keyboard 9
Let iOS keyboard dismissal synchronize with scroll flutter/flutter#57609 Sofware keyboard 8
Keyboard issue on mobile Web platform flutter/flutter#124205 Software keyboard 7
Spellcheck on Flutter Web flutter/flutter#40682 New feature 5
Add a way to detect keyboard language flutter/flutter#25841 Keyboard language 4
Expose low level IME interactions flutter/flutter#150460 IME 4
[Keyboard] Synchronize keyboard state on defocus and refocus flutter/flutter#99330 Synchronization issue 3
Support text selection programmatically for the SelectableText widget flutter/flutter#69460 New feature 2
Add bool validateOnLostFocus to the FormField and Form class flutter/flutter#40675 Forms 2
[Android] Autofill from saved credentials doesn't work flutter/flutter#137760 Autofill 2
Add ability for text field TextInputAction to be dynamic flutter/flutter#30331 New feature 2
suffixIcon/prefixIcon alignment in an growing multiline TextField flutter/flutter#95920 New feature 2
Make "fields" in FormState not a private member flutter/flutter#67283 New feature 2
Flutter should be able to interact with host clipboard for rich content flutter/flutter#23603 New feature 2
[web] Textfield 'autofocus: true' doesn't show up the keyboard flutter/flutter#58498 Software keyboard 2
[Autofill] TextInput.finishAutofillContext() doesn't bring up the system prompt flutter/flutter#116889 Autofill 1
FocusNode does not auto scroll to TextFormField when item already selected flutter/flutter#58877 Focus 1
showDatePicker has date format issues when DatePickerEntryMode.input is selected flutter/flutter#62401 Type 1
Missing default context menu buttons on each platform flutter/flutter#107578 Context menu 1
Flutter needs a way to test real IME text input behavior flutter/flutter#131510 Testing 1
[web] Enhancing Flutter Web's text editing system by using Platform Views flutter/flutter#120613 Web 1
Input validator async flutter/flutter#9688 New feature 1
[proposal] ability to change text overflow on the TextField flutter/flutter#61069 New feature 1
Password bar in the keyboard is flashing when using TextField with AutofillHints.password on iOS 17 flutter/flutter#134723 Autofill 1
Flutter OnScreen Keyboard opens on physical key press flutter/flutter#51478 Software keyboard 1
Better textFormField label placement customization when focused and when value input- vertical floatingLabelAlignment feature. flutter/flutter#110425 Feature 1
KeyboardListener is buggy after focusing a TextField flutter/flutter#67915 Focus 1
TextField TextInputType "name" overrides TextCapitalization "words" flutter/flutter#67282 Type 1
iOS Keyboard flickers when switching the TextFields which have obscureText set to true flutter/flutter#88354 Software keyboard 1

Methodology

The first CSV is for all platforms.

The second CSV is for Android and iOS and excludes Linux, macOS, web, and Windows.

This data was generated using https://github.com/loic-sharma/github-insights and the following DuckDB queries:

DuckDB queries...

All platforms:

.mode csv
.output issue_deltas_top_text_input_issues_90d.csv

WITH
    top_issues AS (
      SELECT
        *,
        repository || '#' || id  AS issue_id,
      FROM read_json(
        'top_issues/**/*.jsonl',
        format = 'newline_delimited',
        columns = {
          date: 'TIMESTAMP',
          repository: 'VARCHAR',
          id: 'BIGINT',
          title: 'VARCHAR',
          state: 'VARCHAR',
          comments: 'BIGINT',
          participants: 'BIGINT',
          reactions: 'BIGINT',
          createdAt: 'TIMESTAMP',
          labels: 'VARCHAR[]'
        }
      )
    ),
    latest_issues AS (
      SELECT * FROM top_issues WHERE date IN (
        SELECT date FROM top_issues ORDER BY date DESC LIMIT 1
      )
    ),
    text_input_issues AS (
      SELECT issue_id
      FROM latest_issues
      WHERE
        list_contains(labels, 'team-text-input')
        OR list_contains(labels, 'a: text input')
    )
  SELECT
    top_issues.issue_id,
    any_value(title) AS title,
    min(date) AS start,
    max(date) AS end,
    max(comments) AS total_comments,
    max(reactions) AS total_reactions,
    max(comments) - min(comments) AS new_comments,
    max(reactions) - min(reactions) AS new_reactions,
    'https://github.com/' || repository || '/issues/' || id AS issue_url,
  FROM top_issues
  JOIN text_input_issues ON top_issues.issue_id = text_input_issues.issue_id
  WHERE date_diff('day', "date", today()) <= 90
  GROUP BY top_issues.issue_id, repository, id
  ORDER BY new_reactions DESC;

iOS and Android only:

.mode csv
.output issue_deltas_top_text_input_issues_90d_ios_android.csv

WITH
    top_issues AS (
      SELECT
        *,
        repository || '#' || id  AS issue_id,
      FROM read_json(
        'top_issues/**/*.jsonl',
        format = 'newline_delimited',
        columns = {
          date: 'TIMESTAMP',
          repository: 'VARCHAR',
          id: 'BIGINT',
          title: 'VARCHAR',
          state: 'VARCHAR',
          comments: 'BIGINT',
          participants: 'BIGINT',
          reactions: 'BIGINT',
          createdAt: 'TIMESTAMP',
          labels: 'VARCHAR[]'
        }
      )
    ),
    latest_issues AS (
      SELECT * FROM top_issues WHERE date IN (
        SELECT date FROM top_issues ORDER BY date DESC LIMIT 1
      )
    ),
    text_input_issues AS (
      SELECT issue_id
      FROM latest_issues
      WHERE
        (list_contains(labels, 'team-text-input') OR list_contains(labels, 'a: text input'))
        AND NOT list_contains(labels, 'platform-web')
        AND NOT list_contains(labels, 'platform-linux')
        AND NOT list_contains(labels, 'platform-windows')
        AND NOT list_contains(labels, 'platform-mac')
    )
  SELECT
    top_issues.issue_id,
    any_value(title) AS title,
    --min(date) AS start,
    --max(date) AS end,
    max(comments) AS total_comments,
    max(reactions) AS total_reactions,
    max(comments) - min(comments) AS new_comments,
    max(reactions) - min(reactions) AS new_reactions,
    'https://github.com/' || repository || '/issues/' || id AS issue_url,
  FROM top_issues
  JOIN text_input_issues ON top_issues.issue_id = text_input_issues.issue_id
  WHERE date_diff('day', "date", today()) <= 90
  GROUP BY top_issues.issue_id, repository, id
  ORDER BY new_reactions DESC;
issue_id title total_comments total_reactions new_comments new_reactions issue_url
flutter/flutter#99606 Ability to change the keyboard language programmatically 30 128 0 9 https://github.com/flutter/flutter/issues/99606
flutter/flutter#10713 Hot restart while keyboard is up leaves the keyboard up 20 40 2 9 https://github.com/flutter/flutter/issues/10713
flutter/flutter#57609 Let iOS keyboard dismissal synchronize with scroll 51 110 4 8 https://github.com/flutter/flutter/issues/57609
flutter/flutter#124205 Keyboard issue on mobile Web platform 88 84 15 7 https://github.com/flutter/flutter/issues/124205
flutter/flutter#149753 FlutterFragmentActivity support for predictive back 18 22 0 7 https://github.com/flutter/flutter/issues/149753
flutter/flutter#40682 Spellcheck on Flutter Web 23 78 1 5 https://github.com/flutter/flutter/issues/40682
flutter/flutter#25841 Add a way to detect keyboard language 35 170 0 4 https://github.com/flutter/flutter/issues/25841
flutter/flutter#150460 Expose low level IME interactions 9 31 3 4 https://github.com/flutter/flutter/issues/150460
flutter/flutter#99330 [Keyboard] Synchronize keyboard state on defocus and refocus 11 23 2 3 https://github.com/flutter/flutter/issues/99330
flutter/flutter#23603 Flutter should be able to interact with host clipboard for rich content 11 120 0 2 https://github.com/flutter/flutter/issues/23603
flutter/flutter#67283 Make "fields" in FormState not a private member 3 37 0 2 https://github.com/flutter/flutter/issues/67283
flutter/flutter#58498 [web] Textfield 'autofocus: true' doesn't show up the keyboard 53 105 1 2 https://github.com/flutter/flutter/issues/58498
flutter/flutter#69460 Support text selection programmatically for the SelectableText widget 3 22 0 2 https://github.com/flutter/flutter/issues/69460
flutter/flutter#40675 Add `bool validateOnLostFocus` to the `FormField` and `Form` class 18 25 1 2 https://github.com/flutter/flutter/issues/40675
flutter/flutter#137760 [Android] Autofill from saved credentials doesn't work 52 21 4 2 https://github.com/flutter/flutter/issues/137760
flutter/flutter#30331 Add ability for text field TextInputAction to be dynamic 1 20 0 2 https://github.com/flutter/flutter/issues/30331
flutter/flutter#95920 `suffixIcon/prefixIcon` alignment in an growing multiline TextField 9 16 0 2 https://github.com/flutter/flutter/issues/95920
flutter/flutter#116889 [Autofill] TextInput.finishAutofillContext() doesn't bring up the system prompt 25 19 1 1 https://github.com/flutter/flutter/issues/116889
flutter/flutter#62401 showDatePicker has date format issues when DatePickerEntryMode.input is selected 23 49 0 1 https://github.com/flutter/flutter/issues/62401
flutter/flutter#107578 Missing default context menu buttons on each platform 14 22 0 1 https://github.com/flutter/flutter/issues/107578
flutter/flutter#9688 Input validator async 24 72 0 1 https://github.com/flutter/flutter/issues/9688
flutter/flutter#61069 [proposal] ability to change text overflow on the TextField 29 61 1 1 https://github.com/flutter/flutter/issues/61069
flutter/flutter#131510 Flutter needs a way to test real IME text input behavior 11 34 0 1 https://github.com/flutter/flutter/issues/131510
flutter/flutter#67915 KeyboardListener is buggy after focusing a TextField 31 22 1 1 https://github.com/flutter/flutter/issues/67915
flutter/flutter#67282 TextField TextInputType "name" overrides TextCapitalization "words" 9 15 1 1 https://github.com/flutter/flutter/issues/67282
flutter/flutter#110425 Better textFormField label placement customization when focused and when value input- vertical floatingLabelAlignment feature. 13 18 0 1 https://github.com/flutter/flutter/issues/110425
flutter/flutter#120613 [web] Enhancing Flutter Web's text editing system by using Platform Views 22 42 1 1 https://github.com/flutter/flutter/issues/120613
flutter/flutter#134723 Password bar in the keyboard is flashing when using `TextField` with `AutofillHints.password` on iOS 17 30 30 2 1 https://github.com/flutter/flutter/issues/134723
flutter/flutter#51478 Flutter OnScreen Keyboard opens on physical key press 31 17 2 1 https://github.com/flutter/flutter/issues/51478
flutter/flutter#58877 FocusNode does not auto scroll to TextFormField when item already selected 32 14 0 1 https://github.com/flutter/flutter/issues/58877
flutter/flutter#88354 iOS Keyboard flickers when switching the TextFields which have obscureText set to true 25 21 2 1 https://github.com/flutter/flutter/issues/88354
flutter/flutter#31985 Gaining/losing focus and opening/closing the keyboard must not be strongly coupled 13 55 0 0 https://github.com/flutter/flutter/issues/31985
flutter/flutter#9383 Support keyboard events in flutter_driver 33 53 0 0 https://github.com/flutter/flutter/issues/9383
flutter/flutter#74255 ☂️ Proposal: desktop context menu fidelity 22 52 0 0 https://github.com/flutter/flutter/issues/74255
flutter/flutter#51258 Need to find how much of a long word could fit in one line before an unnatural line break 0 28 0 0 https://github.com/flutter/flutter/issues/51258
flutter/flutter#90063 TextField with lots of text can hang app 42 33 0 0 https://github.com/flutter/flutter/issues/90063
flutter/flutter#104604 iOS TextField with TextInputType.number and AutofillHints.creditCardNumber shows the wrong keyboard 9 19 3 0 https://github.com/flutter/flutter/issues/104604
flutter/flutter#74547 Support IME reconversion on Windows 2 30 0 0 https://github.com/flutter/flutter/issues/74547
flutter/flutter#98720 [Android] TextField cursor doesn't move to tapped position, but converts into text selection mode after selecting input mode from virtual keyboard. 47 26 1 0 https://github.com/flutter/flutter/issues/98720
flutter/flutter#84444 Autofill Hints iOS: email field doesn't autofill if keyboardType is `TextInputType.emailAddress` 13 14 0 0 https://github.com/flutter/flutter/issues/84444
flutter/flutter#12920 Autocorrect tooltips don't appear on iOS 65 79 0 0 https://github.com/flutter/flutter/issues/12920
flutter/flutter#48464 When popping a route, controls should reacquire focus without opening the keyboard or scrolling to make visible. 29 36 0 0 https://github.com/flutter/flutter/issues/48464
flutter/flutter#107972 A KeyRepeatEvent is dispatched, but the state shows that the physical key is not pressed 61 30 0 0 https://github.com/flutter/flutter/issues/107972
flutter/flutter#49783 Focus gets lost on Android TV 51 21 0 0 https://github.com/flutter/flutter/issues/49783
flutter/flutter#99050 [Windows] On screen keyboard pops up abnormally on touch screen tablets 44 31 0 0 https://github.com/flutter/flutter/issues/99050
flutter/flutter#72625 Add the native keyboard actions bar such as the up/down/done buttons in iOS 1 28 0 0 https://github.com/flutter/flutter/issues/72625
flutter/flutter#34610 Mixing RTL and LTR text bugs 8 17 0 0 https://github.com/flutter/flutter/issues/34610
flutter/flutter#78660 Arrow keys in RTL move the wrong way 14 15 0 0 https://github.com/flutter/flutter/issues/78660
flutter/flutter#17809 Support TextSpan in TextFields 6 26 0 0 https://github.com/flutter/flutter/issues/17809
flutter/flutter#91174 [Proposal] Align prefixIcon with input text 18 17 0 0 https://github.com/flutter/flutter/issues/91174
flutter/flutter#148271 [Web][HTML]: cursor offset is incorrect when typing CJK 2 15 0 0 https://github.com/flutter/flutter/issues/148271
flutter/flutter#44681 Prevent soft keyboard to show when physical keyboard is used 28 32 0 0 https://github.com/flutter/flutter/issues/44681
flutter/flutter#52599 TextField: Keyboard not showing on `autofocus: true` after app is paused then resumed in Android 18 17 0 0 https://github.com/flutter/flutter/issues/52599
flutter/flutter#64552 Show suffix/prefix text in TextField even when it is not in focus and empty. 23 24 2 0 https://github.com/flutter/flutter/issues/64552
flutter/flutter#68117 Allow custom spacing between helperText, errorText and border on InputDecoration 1 18 1 0 https://github.com/flutter/flutter/issues/68117
flutter/flutter#23749 Provide API in TextField to open the keyboard 20 22 0 0 https://github.com/flutter/flutter/issues/23749
flutter/flutter#27918 LastPass doesn't support text fields in Flutter apps 8 21 0 0 https://github.com/flutter/flutter/issues/27918
flutter/flutter#72364 [Autofill] Switch to `SecSharedCredentials` on iOS, and explore how we can expose it in the framework 9 17 0 0 https://github.com/flutter/flutter/issues/72364
flutter/flutter#92506 [Feature Request] Ability to copy WidgetSpan to clipboard 3 16 1 0 https://github.com/flutter/flutter/issues/92506
flutter/flutter#91752 Set default keyboard language in textField 4 13 0 0 https://github.com/flutter/flutter/issues/91752
flutter/flutter#73791 Proposal to support Hex Keyboard format 0 13 0 0 https://github.com/flutter/flutter/issues/73791
flutter/flutter#34749 [iOS 13] New Text Editing Gestures 7 13 0 0 https://github.com/flutter/flutter/issues/34749
flutter/flutter#20987 Animation lag when navigating to screen with `TextField` with `autoFocus` set to `true` on iOS 17 16 0 0 https://github.com/flutter/flutter/issues/20987
flutter/flutter#118606 TalkBack includes labelText and hintText into text field length 5 14 0 0 https://github.com/flutter/flutter/issues/118606
issue_id title total_comments total_reactions new_comments new_reactions issue_url
flutter/flutter#99606 Ability to change the keyboard language programmatically 30 128 0 9 https://github.com/flutter/flutter/issues/99606
flutter/flutter#10713 Hot restart while keyboard is up leaves the keyboard up 20 40 2 9 https://github.com/flutter/flutter/issues/10713
flutter/flutter#57609 Let iOS keyboard dismissal synchronize with scroll 51 110 4 8 https://github.com/flutter/flutter/issues/57609
flutter/flutter#149753 FlutterFragmentActivity support for predictive back 18 22 0 7 https://github.com/flutter/flutter/issues/149753
flutter/flutter#25841 Add a way to detect keyboard language 35 170 0 4 https://github.com/flutter/flutter/issues/25841
flutter/flutter#150460 Expose low level IME interactions 9 31 3 4 https://github.com/flutter/flutter/issues/150460
flutter/flutter#40675 Add `bool validateOnLostFocus` to the `FormField` and `Form` class 18 25 1 2 https://github.com/flutter/flutter/issues/40675
flutter/flutter#137760 [Android] Autofill from saved credentials doesn't work 52 21 4 2 https://github.com/flutter/flutter/issues/137760
flutter/flutter#30331 Add ability for text field TextInputAction to be dynamic 1 20 0 2 https://github.com/flutter/flutter/issues/30331
flutter/flutter#95920 `suffixIcon/prefixIcon` alignment in an growing multiline TextField 9 16 0 2 https://github.com/flutter/flutter/issues/95920
flutter/flutter#67283 Make "fields" in FormState not a private member 3 37 0 2 https://github.com/flutter/flutter/issues/67283
flutter/flutter#69460 Support text selection programmatically for the SelectableText widget 3 22 0 2 https://github.com/flutter/flutter/issues/69460
flutter/flutter#9688 Input validator async 24 72 0 1 https://github.com/flutter/flutter/issues/9688
flutter/flutter#116889 [Autofill] TextInput.finishAutofillContext() doesn't bring up the system prompt 25 19 1 1 https://github.com/flutter/flutter/issues/116889
flutter/flutter#62401 showDatePicker has date format issues when DatePickerEntryMode.input is selected 23 49 0 1 https://github.com/flutter/flutter/issues/62401
flutter/flutter#107578 Missing default context menu buttons on each platform 14 22 0 1 https://github.com/flutter/flutter/issues/107578
flutter/flutter#134723 Password bar in the keyboard is flashing when using `TextField` with `AutofillHints.password` on iOS 17 30 30 2 1 https://github.com/flutter/flutter/issues/134723
flutter/flutter#110425 Better textFormField label placement customization when focused and when value input- vertical floatingLabelAlignment feature. 13 18 0 1 https://github.com/flutter/flutter/issues/110425
flutter/flutter#58877 FocusNode does not auto scroll to TextFormField when item already selected 32 14 0 1 https://github.com/flutter/flutter/issues/58877
flutter/flutter#61069 [proposal] ability to change text overflow on the TextField 29 61 1 1 https://github.com/flutter/flutter/issues/61069
flutter/flutter#51478 Flutter OnScreen Keyboard opens on physical key press 31 17 2 1 https://github.com/flutter/flutter/issues/51478
flutter/flutter#131510 Flutter needs a way to test real IME text input behavior 11 34 0 1 https://github.com/flutter/flutter/issues/131510
flutter/flutter#67915 KeyboardListener is buggy after focusing a TextField 31 22 1 1 https://github.com/flutter/flutter/issues/67915
flutter/flutter#67282 TextField TextInputType "name" overrides TextCapitalization "words" 9 15 1 1 https://github.com/flutter/flutter/issues/67282
flutter/flutter#88354 iOS Keyboard flickers when switching the TextFields which have obscureText set to true 25 21 2 1 https://github.com/flutter/flutter/issues/88354
flutter/flutter#51258 Need to find how much of a long word could fit in one line before an unnatural line break 0 28 0 0 https://github.com/flutter/flutter/issues/51258
flutter/flutter#44681 Prevent soft keyboard to show when physical keyboard is used 28 32 0 0 https://github.com/flutter/flutter/issues/44681
flutter/flutter#12920 Autocorrect tooltips don't appear on iOS 65 79 0 0 https://github.com/flutter/flutter/issues/12920
flutter/flutter#17809 Support TextSpan in TextFields 6 26 0 0 https://github.com/flutter/flutter/issues/17809
flutter/flutter#23749 Provide API in TextField to open the keyboard 20 22 0 0 https://github.com/flutter/flutter/issues/23749
flutter/flutter#27918 LastPass doesn't support text fields in Flutter apps 8 21 0 0 https://github.com/flutter/flutter/issues/27918
flutter/flutter#20987 Animation lag when navigating to screen with `TextField` with `autoFocus` set to `true` on iOS 17 16 0 0 https://github.com/flutter/flutter/issues/20987
flutter/flutter#118606 TalkBack includes labelText and hintText into text field length 5 14 0 0 https://github.com/flutter/flutter/issues/118606
flutter/flutter#72625 Add the native keyboard actions bar such as the up/down/done buttons in iOS 1 28 0 0 https://github.com/flutter/flutter/issues/72625
flutter/flutter#34610 Mixing RTL and LTR text bugs 8 17 0 0 https://github.com/flutter/flutter/issues/34610
flutter/flutter#91174 [Proposal] Align prefixIcon with input text 18 17 0 0 https://github.com/flutter/flutter/issues/91174
flutter/flutter#48464 When popping a route, controls should reacquire focus without opening the keyboard or scrolling to make visible. 29 36 0 0 https://github.com/flutter/flutter/issues/48464
flutter/flutter#49783 Focus gets lost on Android TV 51 21 0 0 https://github.com/flutter/flutter/issues/49783
flutter/flutter#52599 TextField: Keyboard not showing on `autofocus: true` after app is paused then resumed in Android 18 17 0 0 https://github.com/flutter/flutter/issues/52599
flutter/flutter#31985 Gaining/losing focus and opening/closing the keyboard must not be strongly coupled 13 55 0 0 https://github.com/flutter/flutter/issues/31985
flutter/flutter#72364 [Autofill] Switch to `SecSharedCredentials` on iOS, and explore how we can expose it in the framework 9 17 0 0 https://github.com/flutter/flutter/issues/72364
flutter/flutter#92506 [Feature Request] Ability to copy WidgetSpan to clipboard 3 16 1 0 https://github.com/flutter/flutter/issues/92506
flutter/flutter#90063 TextField with lots of text can hang app 42 33 0 0 https://github.com/flutter/flutter/issues/90063
flutter/flutter#104604 iOS TextField with TextInputType.number and AutofillHints.creditCardNumber shows the wrong keyboard 9 19 3 0 https://github.com/flutter/flutter/issues/104604
flutter/flutter#78660 Arrow keys in RTL move the wrong way 14 15 0 0 https://github.com/flutter/flutter/issues/78660
flutter/flutter#91752 Set default keyboard language in textField 4 13 0 0 https://github.com/flutter/flutter/issues/91752
flutter/flutter#64552 Show suffix/prefix text in TextField even when it is not in focus and empty. 23 24 2 0 https://github.com/flutter/flutter/issues/64552
flutter/flutter#68117 Allow custom spacing between helperText, errorText and border on InputDecoration 1 18 1 0 https://github.com/flutter/flutter/issues/68117
flutter/flutter#9383 Support keyboard events in flutter_driver 33 53 0 0 https://github.com/flutter/flutter/issues/9383
flutter/flutter#98720 [Android] TextField cursor doesn't move to tapped position, but converts into text selection mode after selecting input mode from virtual keyboard. 47 26 1 0 https://github.com/flutter/flutter/issues/98720
flutter/flutter#84444 Autofill Hints iOS: email field doesn't autofill if keyboardType is `TextInputType.emailAddress` 13 14 0 0 https://github.com/flutter/flutter/issues/84444
flutter/flutter#73791 Proposal to support Hex Keyboard format 0 13 0 0 https://github.com/flutter/flutter/issues/73791
flutter/flutter#34749 [iOS 13] New Text Editing Gestures 7 13 0 0 https://github.com/flutter/flutter/issues/34749
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment