Параметры панели выбора текста не отображаются при длительном нажатии Виджет CupertinoTextField - PullRequest
0 голосов
/ 10 июля 2019

с enableInteractiveSelection: true, меню вырезать / копировать / вставить должно отображаться как указано в документации в: https://api.flutter.dev/flutter/cupertino/CupertinoTextField/enableInteractiveSelection.html но я могу найти только два варианта по умолчанию, как показано на рисунке enter image description here

показывается только двойным нажатием, не долгим нажатием !!!


    CupertinoTextField(
                                      clearButtonMode: OverlayVisibilityMode.always,
                                      enableInteractiveSelection: true,
                                      expands: true,
                                      controller: _noteController,
                                      style: TextStyle(
                                          color: StyleCustom.txtPrimary,
                                          fontSize: 16.0),
                                      maxLines: null,
                                      minLines: null,
                                      placeholder: 'write your note here',
                                      decoration: BoxDecoration(),
                                      onChanged: (String value) {
                                        debugPrint(value);
                                      },
                                    ),


    [√] Flutter (Channel stable, v1.7.8+hotfix.3, on Microsoft Windows [Version 10.0.17763.557], locale en-US)
        • Flutter version 1.7.8+hotfix.3 at C:\src\flutter
        • Framework revision b712a172f9 (4 hours ago), 2019-07-09 13:14:38 -0700
        • Engine revision 54ad777fd2
        • Dart version 2.4.0


    [√] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
        • Android SDK at C:\Users\midos\AppData\Local\Android\sdk
        • Android NDK location not configured (optional; useful for native profiling support)
        • Platform android-28, build-tools 28.0.3
        • Java binary at: C:\Program Files\Java\jdk1.8.0_211\bin\java
        • Java version Java(TM) SE Runtime Environment (build 1.8.0_211-b12)
        • All Android licenses accepted.

    [!] Android Studio (not installed)
        • Android Studio not found; download from https://developer.android.com/studio/index.html
          (or visit https://flutter.dev/setup/#android-setup for detailed instructions).

    [√] IntelliJ IDEA Community Edition (version 2019.1)
        • IntelliJ at C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2019.1.3
        • Flutter plugin version 36.0.4
        • Dart plugin version 191.7479.14

    [√] VS Code, 64-bit edition (version 1.36.0)
        • VS Code at C:\Program Files\Microsoft VS Code
        • Flutter extension version 3.2.0

    [√] Connected device (1 available)
        • COR L29 • XTX7N18A31001552 • android-arm64 • Android 8.1.0 (API 27)

    ! Doctor found issues in 1 category.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...