🙆♂️오류 플러터를 사용하다보면 이렇게 Navigator 에러가 나옵니다. 그 이유는 현재 받아온 context에서 ScreenA를 찾을 수 없기 때문입니다. import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { const MyApp({ Key? key }) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( home: Center( child: ElevatedButton( child: Text("Go to ScreenA"), onPressed: () { Nav..