onRefresh

카테고리 없음

Flutter 새로고침 동작하기 RefreshIndicator

우리가 스마트폰을 사용할 때, 스크롤을 밑으로 쫙 내리면 상단 부분에 새로고침이 표시되는 것을 확인할 수 있다 이번에는 그걸 한번 해보겠다. 1. 기본 코드 일단 기본코드 main.dart와 연습용 practice_page.dart를 준비한다. main.dart import 'package:flutter/material.dart'; import 'package:flutter_practice/pages/practice_page.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); // This widget is the root of y..

INICO
'onRefresh' 태그의 글 목록