简体   繁体   中英

What is the best efficient way I use twitter Icon in flutter?

Using the library font_awesome_flutter , we know can find most social media logos. Among them, we got the twitter logo below this line.

FontAwesomeIcons.twitter;
FontAwesomeIcons.twitterSquare;

I forget mentioned these line. After adding anyone, we should do this also run in our terminal

 pub clean 

And then

pub get update

Try below code:

       const Icon(
          FontAwesomeIcons.twitter,
          size: 30,
        ),
        const Icon(
          FontAwesomeIcons.squareTwitter,
          size: 30,
        ),
  

Result-> 图片

It should be in Icon() widget for it to work

...
child: Icon(FontAwesomeIcons.twitter, color: Colors.blue,)
..

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM