zoukankan      html  css  js  c++  java
  • flutter isolate demo

    main.dart

    import 'package:flutter/material.dart';
    import 'package:flutter_isolate/flutter_isolate.dart';
    import 'isolates.dart';
    import 'dbhelper.dart';
    
    void main() {
      runApp(MaterialApp(
          title: 'Flutter Demo',
          initialRoute: '/',
        routes: {
            '/':(context)=>MyApp(),
            '/second':(context)=>NextPage(),
          },
      ));
    }
    
    class MyApp extends StatefulWidget{
      @override
      State<StatefulWidget> createState() {
        return MyAppState();
      }
    }
    class MyAppState extends State<MyApp> {
      FlutterIsolate isoltex;
      DB db = DB();
    
      addData()async{
        var a = await db.addData('type', {'name':'11maintest'});
        print(a);
      }
    
      checkData()async{
        var b = await db.queryData('SELECT * FROM type');
        print(b);
      }
      @override
      Widget build(BuildContext context) {
    
        return Scaffold(
            appBar: AppBar(title: Text('sss'),),
            body: Container(child: Column(
              children: <Widget>[
                RaisedButton(child: Text('addData'),onPressed: ()async{
                  addData();
                },),
                RaisedButton(child: Text('check data'),onPressed: ()async{
                  checkData();
                },),
                RaisedButton(child: Text('start'),onPressed: ()async{
                  isoltex = await createIsolate();
                },),
                RaisedButton(child: Text('pause'),onPressed: (){
                  isoltex.pause();
                },),
                RaisedButton(child: Text('resume'),onPressed: (){
                  isoltex.resume();
                },),
                RaisedButton(child: Text('kill'),onPressed: (){
                  isoltex.kill();
                },),
                RaisedButton(child: Text('go to next'),onPressed: (){
                  Navigator.of(context).pushNamed('/second');
                },)
    
                ]),
            ),
        );
      }
    }
    
    
    class NextPage extends StatelessWidget{
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: AppBar(title: Text('page2'),),
          body: Container(
            child: RaisedButton(child:Text('btn'),
                onPressed: (){
              print('hello');
            }),
          ),
        );
      }
    }
    

      

    isolates.dart

    import 'dbhelper.dart';
    import 'package:flutter_isolate/flutter_isolate.dart';
    import 'dart:async';
    import 'dart:isolate';
    
    Future<FlutterIsolate> createIsolate() async {
    
      ReceivePort receivePort = ReceivePort();
    
      FlutterIsolate isolate = await FlutterIsolate.spawn(
        isolateEntry,
        receivePort.sendPort,
      );
      receivePort.listen((value){
        print('from spawrn side: $value');
      });
      return isolate;
    }
    
    
    isolateEntry(SendPort sendPort)async{
    
      DB db = DB();
      int i=0;
      while (i<40){
        var d = await db.addData('type', {'name':'$i'});
        i++;
    
        sendPort.send('ok $d');
        await Future.delayed(Duration(seconds: 1));
      }
    }
    

      

    another  https://blog.csdn.net/PD_Wang/article/details/80165265

  • 相关阅读:
    HDU 5334 Virtual Participation(2015多校第四场)
    HDU 1754 I Hate It(线段树+单点更新)
    HDU 5308 I Wanna Become A 24-Point Master(2015多校第二场)
    linux下socket调试
    linux驱动之hello_world源码与编译
    那些年优秀的HTML5活动页面
    近期Responsive web design项目经验分享-高分辨率图片处理篇
    近期Responsive web design项目经验分享
    var foo= {} ;foo.method() 和 单例模式有什么区别
    Web程序设计
  • 原文地址:https://www.cnblogs.com/pythonClub/p/10816443.html
Copyright © 2011-2022 走看看