Y
Hacker News
new
|
ask
|
show
|
jobs
by
ilurkedhere
2934 days ago
I'm confused. Wouldn't "native" imply it uses platform widgets rather than HTML?
2 comments
k__
2933 days ago
This is what React-Native (which Vue-Native is build upon) does.
Instead of
<div>Hello</div>
you have
<View><Text>Hello</Text></View>
link
acobster
2934 days ago
Yes, but as opposed to a traditional GUI SDK, it's manipulating those widgets with JS, within a Vue.js architecture.
link
Instead of
you have