1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| Stack( children: <Widget>[ new Image( width: 60.0, height: 60.0, fit: BoxFit.fill, image: AssetImage('images/default_avatar_doctor.png'), ), new CircleAvatar( backgroundImage: new NetworkImage('https://img2.woyaogexing.com/2018/09/13/16a79b48e13543f1b32bf167420c4624!400x400.jpeg'), radius: 30.0, backgroundColor: Colors.transparent, ), ], ),
|