How to Show an Local image till the NetworkImage() Loads Up in flutter?

前端 未结 9 997
忘掉有多难
忘掉有多难 2021-02-13 03:15
            new CircleAvatar(
                              backgroundColor: Colors.black87,
                              backgroundImage: new NetworkImage(url),
               


        
9条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-13 03:54

    You may want to try a FadeInImage wrapped in a ClipOval. FadeInImage provides a placeholder property you can use while the network image is loading.

    Note: ClipOval can be expensive if you do it a lot, so use it sparingly.

提交回复
热议问题