일모도원(日暮途遠) 개발자

[Flutter오류] There are multiple heroes that share the same tag within a subtree. 본문

Flutter/오류수정

[Flutter오류] There are multiple heroes that share the same tag within a subtree.

달님개발자 2023. 11. 25. 23:35

Hero를 쓰지도 않는데 이런 에러가 계속 나온적이 있다.

 

문제는 FloatingActionButton을 두개 이상 쓰고 있었다. 물론 hero를 쓰지 않았는데, 여기서 에러가 났다.

FloatingActionButton(
    onPressed: () {
    
    
FloatingActionButton(
    onPressed: () {

 

아래처럼 각각의 FloatingActionButton에 heroTag에 값을 다르게 주면 해결이 된다.

FloatingActionButton(
    heroTag: "1",
    onPressed: () {
    
    
FloatingActionButton(
    heroTag: "2",
    onPressed: () {