Вы можете попробовать класс BoxDecoration с радиусом 50:
new Container(
height: 80.0,
width: 80.0,
decoration: new BoxDecoration(
color: const Color(0xff7c94b6),
borderRadius: BorderRadius.all(const Radius.circular(50.0)),
border: Border.all(color: const Color(0xFF28324E)),
),
child: new Image.file(_image)
),
CircleAvatar класс:
new CircleAvatar(
backgroundColor: Colors.brown.shade800,
child: new Image.file(_image),
),
или, точнее, ваш код пропускает (
после BoxDecoration и имеет множество )
.
То же самое с BoxShape классом:
new Container(
height: 80.0,
width: 80.0,
decoration: new BoxDecoration(
shape: BoxShape.circle,
border: Border.all(color: const Color(0x33A6A6A6)),
// image: new Image.asset(_image.)
),
child: new Image.file(_image),
),