디버크 아이콘

· Flutter
✔ 다음과 같이 설정하기 debugShowCheckedModeBanner: false, ✔ 관련 코드 보기 void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { print("build() 메서드 호출 확인"); return MaterialApp( debugShowCheckedModeBanner: false, home: StorePage(), ); } }
31daylee
'디버크 아이콘' 태그의 글 목록