Why is flutter printing out widget name?

Issue I have a problem with flutter printing out the name and rendering Widget name after running the application class MyApp extends StatefulWidget { const MyApp({Key? key}) : super(key: key); @override State<MyApp> createState() => _MyAppState(); } class _MyAppState extends State<MyApp>

Continue reading