[flutter] StreamBuilder
본문
body: StreamBuilder(
stream: () {
return Stream.periodic(
Duration(seconds: 1),
(count) {
return count;
},
);
}(),
builder: (context, snapshot) {
return Center(
child: my.text(snapshot.data.toString()),
);
},
),
댓글목록 1
먼북소리님의 댓글
댓글 포인트 안내