Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.debounce(Duration(milliseconds: 500)) 报错 #3

Open
LLemonGreen opened this issue May 20, 2019 · 0 comments
Open

.debounce(Duration(milliseconds: 500)) 报错 #3

LLemonGreen opened this issue May 20, 2019 · 0 comments

Comments

@LLemonGreen
Copy link

分支:rxdart

rxdart/rxdart_demo.dart

line35 .debounce(Duration(milliseconds: 500)) 报错

改为 .debounceTime(Duration(milliseconds: 500))

_textFieldSubject
        // .map((item) => 'item:$item')
        // .where((item) => item.length > 9)
        .debounceTime(Duration(milliseconds: 500))
        .listen((data) => print(data));

当前flutter版本:Flutter (Channel beta, v1.5.4-hotfix.2, on Microsoft Windows [Version 10.0.17763.503], locale zh-CN)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant