PageView

김원교·2023년 3월 7일
0

body: PageView(
children: [1,2,3,4,5].map((e)=>
Image.asset('asset/img/image_$e.jpeg',
fit: BoxFit.cover,
),).toList()
)

fit: BoxFit.cover >> 화면을 꽉 채움, 단 비율을 맞추기 위해 짤릴 수 있다

@override
void initState() {

super.initState();

timer=Timer.periodic(Duration(seconds: 1), (timer) {
  print('Timer!');
});

}

) 처음에 부모 클래스의 initSate()를 실행시킨다
) Timer.periodic(Duration(seconds: 1), (timer) { print('Timer!');}) >> 1초를 주기로 함수를 실행시킨다

@override
void dispose() {

if(timer != null){
  timer!.cancel();
}

super.dispose();

}
) timer가 실행되고 있다면 homescreen이 종료될 때 실행된다

profile
지드래건 남들이 머라건 이병건

0개의 댓글