我正在使用Appcelerator Titanium。我想在我的应用中使用Barcode Scanner
。在iOS平台上,我找到了一个模块"Ti.Barcode-iPhone"
开源。但是,我想要 Android和iOS平台。我在哪里可以找到它?
答案 0 :(得分:2)
Appcelerator有官方模块:https://github.com/appcelerator-modules/ti.barcode
下载您需要的版本(TiSDK 7.x也有一个版本),然后将它们包含在import { render } from "react-dom";
import { Provider } from "mobx-react";
var stores = { StudentModal: new StudanModalStore() }
render(
<Provider {...stores}>
<StudentModal />
</Provider>,
rootEl,
);
@observer
@inject('StudentModal')
export default class StudentModal extends Component {
//used getter instead of setting once
// no longer use `new` but directly reference instance of the store.
get store (): StudentModalStore { return this.props.StudentModalas; }
}
中,然后轻松添加:
tiapp.xml
如何包含的示例列在每个平台的示例目录中,如下所示:https://github.com/appcelerator-modules/ti.barcode/blob/master/android/example/app.js