


라이브러리랑 settings 아이콘이 자꾸 겹치는데 이유를 모르겠습니다.
return Column(
children: [
Stack(
children: [
Row(
children: [
SizedBox(
width: 168,
height: 10,
),
Text(
'라이브러리',
style: TextStyle(fontSize: 17, fontWeight: FontWeight.bold),
),
],
),
Column(children: [
Icon(Icons.settings),
Row(
children: [
Image.network(
'https://i.ibb.co/hxNbZ8p/shazam.png',
width: 25,
),
],
),
]),
],
),
],
);
}
}
