min_chan님의 블로그

[Flutter] - Undefined name 'name'. Try correcting the name to one that is defined, or defining the name 본문

Flutter

[Flutter] - Undefined name 'name'. Try correcting the name to one that is defined, or defining the name

min_chan 2025. 1. 10. 13:36

 

 

  • 에러 코드

registScreen.dart

 Navigator.push(
    context,
      MaterialPageRoute(
        builder: (context) => ChatMessage(animation:animation, name: _nameTextController.text)));
             },

chattingpage.dart

Widget _buildItem(context, index, animation) {
    return ChatMessage(_chats[index], name, animation: animation);
  }
                  },

 

 


  • 에러 사진


  • 원인

chattingpage.dart는 StatefulWidget으로 파라미터를 받아오기 위해서는 widget.name으로 받아와야 되는데,name으로 받아와서 에러가 발생한 것이다. StatelessWidget의 경우에는 name으로 받아와도된다.