We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This seems to have been an issue in flutter material too, fixed here:
When the mouse leaves/enters the window, the child of Tooltip is created with an entirely new state. Repro:
child
Tooltip
import 'package:fluent_ui/fluent_ui.dart'; void main() { runApp(FluentApp( home: ColoredBox( color: Colors.white, child: Center( child: Tooltip( message: 'if this string is empty, issue does not occur', child: StatefulText(), ), ), ), )); } class StatefulText extends StatefulWidget { const StatefulText({super.key}); @override State<StatefulText> createState() => _StatefulTextState(); } class _StatefulTextState extends State<StatefulText> { static int count = 1; @override void initState() { super.initState(); count++; } @override Widget build(BuildContext context) { return Text( 'this initState ran $count times (on window cursor enter/exit)', ); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This seems to have been an issue in flutter material too, fixed here:
When the mouse leaves/enters the window, the
child
ofTooltip
is created with an entirely new state. Repro:The text was updated successfully, but these errors were encountered: