Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Word Candidate Window has problem when typing Chinese on iOS 17 #135404

Closed
2 tasks done
feimenggo opened this issue Sep 25, 2023 · 2 comments
Closed
2 tasks done

Word Candidate Window has problem when typing Chinese on iOS 17 #135404

feimenggo opened this issue Sep 25, 2023 · 2 comments
Labels
r: duplicate Issue is closed as a duplicate of an existing issue

Comments

@feimenggo
Copy link

Is there an existing issue for this?

Steps to reproduce

  1. Execute flutter run on the code sample.
  2. Input Pinyin.

Expected results

Can see the first word candidate.

Actual results

Can't see the first word candidate.

Code sample

Code sample
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
      ),
      body: const Center(child: TextField(maxLines: null)),
    );
  }
}

Screenshots or Video

Video demonstration

Simulator Screen Recording - iPad (10th generation) - 2023-09-25 at 14.55.14

Simulator.Screen.Recording.-.iPad.10th.generation.-.2023-09-25.at.14.55.14.mp4

Logs

No response

Flutter Doctor output

Doctor output
[✓] Flutter (Channel stable, 3.13.5, on macOS 13.5.2 22G91 darwin-arm64, locale zh-Hans-CN)
[✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
[✓] Xcode - develop for iOS and macOS (Xcode 15.0)
[✓] Chrome - develop for the web
[✓] Android Studio (version 2022.3)
[✓] IntelliJ IDEA Community Edition (version 2023.1)
[✓] VS Code (version 1.80.0)
[✓] Connected device (3 available)
@danagbemava-nc danagbemava-nc added the in triage Presently being triaged by the triage team label Sep 25, 2023
@danagbemava-nc
Copy link
Member

Closing this as a duplicate of #132548.

Kindly subscribe to the original issue for updates.

Thank you

@danagbemava-nc danagbemava-nc closed this as not planned Won't fix, can't repro, duplicate, stale Sep 25, 2023
@danagbemava-nc danagbemava-nc added r: duplicate Issue is closed as a duplicate of an existing issue and removed in triage Presently being triaged by the triage team labels Sep 25, 2023
@github-actions
Copy link

github-actions bot commented Oct 9, 2023

This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of flutter doctor -v and a minimal reproduction of the issue.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 9, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
r: duplicate Issue is closed as a duplicate of an existing issue
Projects
None yet
Development

No branches or pull requests

2 participants