You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
张萌 a1ea5114ac
添加初始化 扫描监听
3 years ago
.idea git push 3 years ago
android 添加初始化 扫描监听 3 years ago
example 添加初始化 扫描监听 3 years ago
lib 添加初始化 扫描监听 3 years ago
test 添加初始化 扫描监听 3 years ago
.gitignore build 3 years ago
.metadata build 3 years ago
CHANGELOG.md build 3 years ago
LICENSE build 3 years ago
README.md 添加初始化 扫描监听 3 years ago
analysis_options.yaml build 3 years ago
dj_scaner.iml git push 3 years ago
pubspec.lock build 3 years ago
pubspec.yaml build 3 years ago

README.md

dj_scaner

东集PDA手持扫描设备flutter端插件

初始化

DjScaner.init();

初始化内容:声音关闭,震动关闭,开机自启动,扫描头关闭

##监听扫描内容

await DjScaner.addListener((data) {
                    _code = data;
                    setState(() {});
                  });

##结束监听

    DjScaner.cancel();