Stack(
children: [
const SizedBox(
width: 80,
height: 80,
child: CircleAvatar(
backgroundImage: NetworkImage(
'https://www.whatsappimages.in/wp-content/uploads/2021/03/Cute-Girl-Images-For-Whatsapp-Dp-Pics.jpg'),
),
),
Container(
alignment: Alignment.bottomRight,
width: 80,
height: 80,
child: Stack(
alignment: Alignment.center,
children: const [
SizedBox(
width: 28,
height: 28,
child: FloatingActionButton(
onPressed: null, // 클릭효과 삭제
backgroundColor: Colors.white,
),
),
SizedBox(
width: 25,
height: 25,
child: FloatingActionButton(
onPressed: null, // 클릭효과 삭제
child: Icon(Icons.add),
),
),
],
),
)
],
),