//push Navigator.of(context).push( MaterialPageRoute( builder: (context) { return Scaffold( backgroundColor: Theme.of(context).backgroundColor, body: const Center( child: Text( 'Break Time!', ), ), ), ); }, ), ); //duration await Future.delayed(const Duration(seconds: 3)); // pop!! if (mounted) Navigator.of(context).pop(); mounted란 현재 tree 안에 state object가 있는지를 bool 값으로 알려준다. async-await에 contex..