0

Simple question. How can i use Mozilla's Web Speech API in react native project? can i implement webapp or window interfaces in RN?

Alper M.
  • 143
  • 3
  • 8

1 Answers1

1

You will need to build Android and iOS native modules that implement the Web Speech API using the underlying OS APIs. Native modules are fairly easy to build if you're comfortable in Java and Objective-C. https://facebook.github.io/react-native/docs/native-modules-ios.html https://facebook.github.io/react-native/docs/native-modules-android.html

It sounds like a nice open source project for the RN community.

A. Goodale
  • 1,288
  • 11
  • 13