WillPopScope1 [Flutter] "취소키 방지" WillPopScope 총 정리?! [WillPopScope] App 개발을 하다보면 취소키를 막고 싶은 경우가 있을 것이다. 이럴 때, WillPopScope를 사용하면 취소키를 눌러도 뒤로 가지 않는다. 사용 방법은 간단하다. Scaffold를 WillPopScope로 감싸주면 된다. import 'package:flutter/material.dart'; void main() => runApp( MaterialApp( title: 'MyApp', home: MyApp(), ), ); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return WillPopScope( child: Scaffold( appBar: AppBar( titl.. 2020. 11. 5. 이전 1 다음