
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
질문 내용
안녕하세요? 숙제 - Shazam 클론 코딩 소스를 복사해서 VS Code에 넣으니깐 에러가 발생합니다.
확인 부탁 드립니다.
감사합니다.
.jpg)
.jpg)
작성한 코드 및 에러 메세지
class _TabPageState extends State<TabPage> {
@override
Widget build(BuildContext context) {
return TabPageSelector(
color: DefaultTabController.of(context).index == 1 // 에러 지점 ■■■■
? Colors.blue[300]
: Colors.grey[400],
selectedColor: DefaultTabController.of(context).index == 1
? Colors.white
: Colors.blue,
indicatorSize: 8,
);
}
}
---------------------------------------------------------------------------------------------------------
child: SafeArea(
child: Column(
children: [
Padding(
padding:
const EdgeInsets.symmetric(vertical: 8.0, horizontal: 16.0),
child: Row(
children: [
GestureDetector(
onTap: () {
DefaultTabController.of(context).animateTo(0); // 에러 지점 ■■■■
},
child: Column(
children: [
