0

here is my code

Align(
                          alignment: Alignment.centerRight,
                          child: Tab(icon: Icon(Icons.sms_outlined))),
                      Tab(icon: Icon(MdiIcons.rocket)),

but it shows nothing:

enter image description here

instead, Icons shows normally : here is the code

Align(
                        alignment: Alignment.centerLeft,
                        child: Tab(
                          icon: Icon(Icons.person_outline),
                        ),
                      ),

the image of a normal icon :

enter image description here

achref
  • 23
  • 4
  • Did you try to use `flutter clean` and then build the application again? Most of the times the issue with icons when you upgrade package is with the cache. You need to clean and then build to see if the problem really exists. – immadisairaj Jun 30 '21 at 02:44
  • 1
    no, i didn't but I added //@dart=2.9 and it works perfectly. – achref Jun 30 '21 at 10:34

0 Answers0