AndroidStudio : flutter (dart)로 현재 날짜와 시간을 마이크로 초 단위로 표시
4635 단어 AndroidStudioDartFlutter
하고 싶은 일
구현
main.dart
import 'package:flutter/material.dart';
import 'dart:async';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return _ClockState();
}
}
class _ClockState extends State<MyHomePage> {
String _time = '';
@override
void initState() {
Timer.periodic(
Duration(microseconds: 1000), // 1000000で1秒
_onTimer,
);
super.initState();
}
void _onTimer(Timer timer) {
setState(() => _time = DateTime.now().toString());
}
@override
Widget build(BuildContext context) {
return Text(
_time,
style: TextStyle(
fontSize: 50.0,
color: Colors.yellow,
backgroundColor: Colors.blue
),
);
}
}
화면
Reference
이 문제에 관하여(AndroidStudio : flutter (dart)로 현재 날짜와 시간을 마이크로 초 단위로 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kenichiro-yamato/items/ab16dd4d1bc97854241f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import 'package:flutter/material.dart';
import 'dart:async';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return _ClockState();
}
}
class _ClockState extends State<MyHomePage> {
String _time = '';
@override
void initState() {
Timer.periodic(
Duration(microseconds: 1000), // 1000000で1秒
_onTimer,
);
super.initState();
}
void _onTimer(Timer timer) {
setState(() => _time = DateTime.now().toString());
}
@override
Widget build(BuildContext context) {
return Text(
_time,
style: TextStyle(
fontSize: 50.0,
color: Colors.yellow,
backgroundColor: Colors.blue
),
);
}
}
Reference
이 문제에 관하여(AndroidStudio : flutter (dart)로 현재 날짜와 시간을 마이크로 초 단위로 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kenichiro-yamato/items/ab16dd4d1bc97854241f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)