1. 스택으로 밑에 깔릴 이미지와 버튼아이콘 추가

2. positioned로 배경이미지 위에 올릴 아이콘 위치 고정

Stack(
  children: [
    SizedBox(
      width: 65,
      height: 65,
      child: ClipRRect(
        borderRadius: BorderRadius.circular(32.5),
        child: Image.network(
          'https://placeimg.com/200/100/people',
          fit: BoxFit.cover,
        ),
      ),
    ),
    Positioned(
      bottom: 0,
      right: 0,
      child: Container(
        width: 20,
        height: 20,
        decoration: BoxDecoration(
          borderRadius: BorderRadius.circular(15),
          color: Colors.grey[100],
        ),
        child: Icon(
          Icons.camera_alt_outlined,
          size: 15,
        ),
      ),
    ),
  ],
)

 

728x90

+ Recent posts