Open CripyIce opened 2 years ago
Hi @CripyIce, thanks for filing the issue.
This issue is reproducible on the latest stable
and master
channels with provided sample code with an additional update as below.
But maybe a part has been fixed on master channel 3.1.0-0.0.pre.1553
. On master, title was not changed when I hover mouse/move tab to edit icon (please watch below video)
@CripyIce Is this issue only on the web? Does this reproduce on mobile or desktop platforms?
Steps to Reproduce
flutter run -d chrome --web-renderer html
on the code sample.tab
on your keyboard until reaching focusing the pencil icon will suddenly display the top right text correctly.tab
again and moving on with the focus will reverse the text.Code sample
```dart import 'package:flutter/material.dart'; import 'package:flutter_localizations/flutter_localizations.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( theme: ThemeData( colorSchemeSeed: Colors.indigo, ), localizationsDelegates: const [ GlobalMaterialLocalizations.delegate, GlobalWidgetsLocalizations.delegate, GlobalCupertinoLocalizations.delegate, ], supportedLocales: const [ Locale('he', 'IL'), ], locale: const Locale('he', 'IL'), debugShowCheckedModeBanner: false, home: Scaffold( body: Center( child: MyWidget(), ), ), ); } } class MyWidget extends StatelessWidget { @override Widget build(BuildContext context) { return ElevatedButton( onPressed: () => showDatePicker( context: context, initialDate: DateTime.now(), firstDate: DateTime.now().subtract(Duration(days: 10)), lastDate: DateTime.now(), ), child: Text('test')); } } ```Images of the bug
When focusing the pencil icon using
tab
on the keyboard:When executing
flutter run -d chrome --web-renderer canvaskit
it works great.