[Solved] Android studio IDE internal error occurred Error says Unable to serialize DslActivationStatus state


In your function list you are calling the functions on list creation. This makes flutter throws this exception (which is correct because Navigator tries to route during the build phase of the other widget).

Apart from that, the code is quite weird to me but to get it to work you need to use this list:

final List<Function> ontaps = [
    functionOne,
    functionTwo,
    functionThree,
    functionFour,
    functionFive,
    functionSix,
    functionSeven,
    functionEight,
    functionNine,
    functionTen,
    functionEleven,
    functionTwelve,
    functionThirteen,
    functionFourteen,
    functionFifteen
  ];

2

solved Android studio IDE internal error occurred Error says Unable to serialize DslActivationStatus state