hhstore / blog

My Tech Blog: about Mojo / Rust / Golang / Python / Kotlin / Flutter / VueJS / Blockchain etc.
https://github.com/hhstore/blog/issues
295 stars 24 forks source link

Flutter Web: websocket #327

Open hhstore opened 3 years ago

hhstore commented 3 years ago

related:

hhstore commented 3 years ago

flutter web + websocket:

pkg:

ref:

GetX + Obx() VS StreamBuilder:

与 stream 结合:


RxInt number = 0.obs;
number.bindStream(doc);
final count = 0.obs;

void onInit(){
  count.bindStream(yourFirebaseStream);
  super.onInit();
}

StreamBuilder 组件:

hhstore commented 3 years ago

1

hhstore commented 3 years ago

1

hhstore commented 3 years ago

1