(React Native) Load local HTML file into WebView

后端 未结 4 522
滥情空心
滥情空心 2020-12-09 15:25

I try to load the local .html file into WebView in React Native:

// load lo         


        
4条回答
  •  有刺的猬
    2020-12-09 15:56

    Try this :

    • Add your .html file in your project.
    • Write such lines of code in the file where you want to use WebView Component

      const OurStoryHTML = require ('./OurStory.html')

    It may help you.

提交回复
热议问题