Untitled
Anonymous
dart
01/04/2022 8:54 AM
1.1 KB
12
Indexable
FittedBox(
fit: BoxFit.contain,
child: Material(
shape: CircleBorder(),
elevation: 10,
child: ClipOval(
child: Container(
color: Colors.amber,
child: Padding(
padding: EdgeInsets.all(width * 0.04),
child: ClipOval(
child: profilePic == null
? Image(
fit: BoxFit.fitWidth,
image: AssetImage('assets/defaultpp.png'))
: Image(
fit: BoxFit.fitWidth,
image: FileImage(File(profilePic.path)))),
),
),
),
),
),Editor is loading...