Notice
Recent Posts
Recent Comments
Link
투케이2K
73. (Flutter/플러터) [Mac] : [Dart] : 다트 - [timer] Timer.periodic 사용해 주기적 반복 작업 수행 본문
Flutter
73. (Flutter/플러터) [Mac] : [Dart] : 다트 - [timer] Timer.periodic 사용해 주기적 반복 작업 수행
투케이2K 2024. 5. 30. 19:58[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Dart
[소스 코드]
import 'package:flutter/material.dart';
import 'dart:developer';
import 'dart:core';
import 'dart:async';
// -----------------------------------------------------------------------------------------
// TODO [main] : [application 의 진입점 역할]
// -----------------------------------------------------------------------------------------
void main() {
/**
* ------------------------------------------------
* [요약 설명]
* ------------------------------------------------
* 1. Timer : 타이머 동작을 수행 하며 지연 실행 및 주기적 실행을 동작할 수 있습니다
* ------------------------------------------------
* 2. 참고 사이트 :
*
* https://wikidocs.net/168330
* ------------------------------------------------
* */
try {
// [Timer.periodic 생성]
Timer.periodic(Duration(seconds: 3), (timer) { // [3초 마다 반복 동작 수행]
log("");
log("-------------------------------------------------------");
log("Timer Run :: ${DateTime.now()}");
log("-------------------------------------------------------");
log("");
});
// [로그 출력]
log("");
log("-------------------------------------------------------");
log("Program Start");
log("-------------------------------------------------------");
log("");
}
catch (e) {
log("");
log("-------------------------------------------------------");
log("Catch :: ${e}");
log("-------------------------------------------------------");
log("");
}
}
[결과 출력]
반응형
'Flutter' 카테고리의 다른 글
Comments