
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
3주차 스레드 앱 제작 관련된 내용 중 시뮬레이터로 실행 시 이상 증상이 있어 내용을 남깁니다.
아이폰 시뮬레이터로 앱을 실행시에 앱 처음 화면에서 아무동작이 안되는 증상이 있었습니다.
처음에는 thread_write_page 로 진입이 안되서 get.to 동작이 안되거나, GestureDetector가 동작이 안되는줄 알았는대
나중에 확인해 보니 _left_profile_area에 Image.network함수 사용 부분에 웹에서 읽어오는 이미지 URL 을 못읽어서인지
앱이 멈춰있는 증상이 있었습니다.
그래서 해당 부분을 주석을 하니 GestureDetector의 onTap도 반응하고 get.to도 동작하는걸 확인하였습니다.
제 PC에서만 그런건지 궁금하여 문의 드립니다.

작성한 코드 및 에러 메세지
Widget _leftProfileArea() {
return Column(
children: [
SizedBox(
width: 60,
height: 60,
child: Stack(
children: [
Align(
alignment: Alignment.centerLeft,
child: ClipRRect(
borderRadius: BorderRadius.circular(50),
// child: Image.network(
// width: 50,
// ),
),
),
Positioned(
right: 5,
bottom: 2,
child: SizedBox(
width: 20,
height: 20,
child: ClipRRect(
borderRadius: BorderRadius.circular(20),
child: Container(
decoration: BoxDecoration(color: Colors.black),
child: Icon(Icons.add, color: Colors.white, size: 17),
),
),
),
),
],
),
),
SizedBox(height: 15),
Container(width: 2, height: 200, color: Color(0xffe5e5e5)),
],
);
}
