Flutter: Update Widgets On Resume?

后端 未结 6 1540
梦如初夏
梦如初夏 2020-12-01 03:06

In Flutter, is there a way to update widgets when the user leaves the app and come right back to it? My app is time based, and it would be helpful to update the time as soon

6条回答
  •  天命终不由人
    2020-12-01 03:17

    Using system Channel:

    import 'package:flutter/services.dart';
    
    SystemChannels.lifecycle.setMessageHandler((msg){
      debugPrint('SystemChannels> $msg');
      if(msg==AppLifecycleState.resumed.toString())setState((){});
    });
    

    `

提交回复
热议问题