small bug about ios17 when using flutter app

When using flutter app's input function on the ios17, you will find that the last text of the input contents is always in the selected state. The experience is not very good. Could you correct it in the ios17?

目前官方没有给出解决方案,暂且可以通过主题设置选中文本的颜色为透明色解决。

Theme( data: ThemeData( textSelectionTheme: const TextSelectionThemeData( selectionColor: Colors.transparent, ), ), child: TextField(), )

small bug about ios17 when using flutter app
 
 
Q