PageView ( )위젯 children : 보여줄 페이지 위젯들을 넣고, controller : 페이지 뷰를 컨트롤 한다. // 3초 마다 실행 됨 Timer.periodic(Duration(seconds: 3), (timer) { print('실행!'); // 현재 페이지 int? nextPage = pageController.page?.toInt(); if (nextPage != null) { if (nextPage > 3) { nextPage = 0; } else { nextPage++; } pageController.animateToPage(nextPage, duration: Duration(seconds: 1), curve: Curves.ease); } }); body: PageView( c..