What is the difference in using angular vs angular-nativescript components
It seems I can use both, but what is the advantage of using each for android development?
android angular mobile nativescript nativescript-angular
add a comment |
It seems I can use both, but what is the advantage of using each for android development?
android angular mobile nativescript nativescript-angular
What you mean by Angular vs Nativescript Angular components? Nativescript Angular or Vue were introduced to allow web developers who are familiar with these frameorks to reuse their skillset and eventually share their code between web and native mobile apps. Even if you are not familiar with these framework it's wise to pick one up as it gives you a lot of features out of the box which you might have to do on your own when using Nativescript Core.
– Manoj
Nov 16 at 9:46
There exist the legacy angular components from google itself like angular material. But there also exist the UI-Widgets from angular-nativescript: docs.nativescript.org/ui/basics click on the "UI Widgets" menu link then many components are listed.
– Elisabeth
Nov 16 at 15:14
add a comment |
It seems I can use both, but what is the advantage of using each for android development?
android angular mobile nativescript nativescript-angular
It seems I can use both, but what is the advantage of using each for android development?
android angular mobile nativescript nativescript-angular
android angular mobile nativescript nativescript-angular
asked Nov 16 at 9:37
Elisabeth
7,67136155267
7,67136155267
What you mean by Angular vs Nativescript Angular components? Nativescript Angular or Vue were introduced to allow web developers who are familiar with these frameorks to reuse their skillset and eventually share their code between web and native mobile apps. Even if you are not familiar with these framework it's wise to pick one up as it gives you a lot of features out of the box which you might have to do on your own when using Nativescript Core.
– Manoj
Nov 16 at 9:46
There exist the legacy angular components from google itself like angular material. But there also exist the UI-Widgets from angular-nativescript: docs.nativescript.org/ui/basics click on the "UI Widgets" menu link then many components are listed.
– Elisabeth
Nov 16 at 15:14
add a comment |
What you mean by Angular vs Nativescript Angular components? Nativescript Angular or Vue were introduced to allow web developers who are familiar with these frameorks to reuse their skillset and eventually share their code between web and native mobile apps. Even if you are not familiar with these framework it's wise to pick one up as it gives you a lot of features out of the box which you might have to do on your own when using Nativescript Core.
– Manoj
Nov 16 at 9:46
There exist the legacy angular components from google itself like angular material. But there also exist the UI-Widgets from angular-nativescript: docs.nativescript.org/ui/basics click on the "UI Widgets" menu link then many components are listed.
– Elisabeth
Nov 16 at 15:14
What you mean by Angular vs Nativescript Angular components? Nativescript Angular or Vue were introduced to allow web developers who are familiar with these frameorks to reuse their skillset and eventually share their code between web and native mobile apps. Even if you are not familiar with these framework it's wise to pick one up as it gives you a lot of features out of the box which you might have to do on your own when using Nativescript Core.
– Manoj
Nov 16 at 9:46
What you mean by Angular vs Nativescript Angular components? Nativescript Angular or Vue were introduced to allow web developers who are familiar with these frameorks to reuse their skillset and eventually share their code between web and native mobile apps. Even if you are not familiar with these framework it's wise to pick one up as it gives you a lot of features out of the box which you might have to do on your own when using Nativescript Core.
– Manoj
Nov 16 at 9:46
There exist the legacy angular components from google itself like angular material. But there also exist the UI-Widgets from angular-nativescript: docs.nativescript.org/ui/basics click on the "UI Widgets" menu link then many components are listed.
– Elisabeth
Nov 16 at 15:14
There exist the legacy angular components from google itself like angular material. But there also exist the UI-Widgets from angular-nativescript: docs.nativescript.org/ui/basics click on the "UI Widgets" menu link then many components are listed.
– Elisabeth
Nov 16 at 15:14
add a comment |
1 Answer
1
active
oldest
votes
NativeScript !== Cordova
NativeScript doesn't host your app inside a WebView. Your UI is totally native here. For example when you create a button that is not a HTML button but it is the UIButton (iOS) / android.widget.Button (Android).
With their JavaScript runtime, you get 100% access to all the iOS / Android native apis. So you can reuse your web skills like XML / JavaScript / CSS and frameworks like Angular / Vue to build a pure native app. You may even share controller / model code (not HTML) between your web and mobile app.
Since the components you specified are based on HTML, you will not be able to use them in NativeScript. You have use it's native UI widgets.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53335054%2fwhat-is-the-difference-in-using-angular-vs-angular-nativescript-components%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
NativeScript !== Cordova
NativeScript doesn't host your app inside a WebView. Your UI is totally native here. For example when you create a button that is not a HTML button but it is the UIButton (iOS) / android.widget.Button (Android).
With their JavaScript runtime, you get 100% access to all the iOS / Android native apis. So you can reuse your web skills like XML / JavaScript / CSS and frameworks like Angular / Vue to build a pure native app. You may even share controller / model code (not HTML) between your web and mobile app.
Since the components you specified are based on HTML, you will not be able to use them in NativeScript. You have use it's native UI widgets.
add a comment |
NativeScript !== Cordova
NativeScript doesn't host your app inside a WebView. Your UI is totally native here. For example when you create a button that is not a HTML button but it is the UIButton (iOS) / android.widget.Button (Android).
With their JavaScript runtime, you get 100% access to all the iOS / Android native apis. So you can reuse your web skills like XML / JavaScript / CSS and frameworks like Angular / Vue to build a pure native app. You may even share controller / model code (not HTML) between your web and mobile app.
Since the components you specified are based on HTML, you will not be able to use them in NativeScript. You have use it's native UI widgets.
add a comment |
NativeScript !== Cordova
NativeScript doesn't host your app inside a WebView. Your UI is totally native here. For example when you create a button that is not a HTML button but it is the UIButton (iOS) / android.widget.Button (Android).
With their JavaScript runtime, you get 100% access to all the iOS / Android native apis. So you can reuse your web skills like XML / JavaScript / CSS and frameworks like Angular / Vue to build a pure native app. You may even share controller / model code (not HTML) between your web and mobile app.
Since the components you specified are based on HTML, you will not be able to use them in NativeScript. You have use it's native UI widgets.
NativeScript !== Cordova
NativeScript doesn't host your app inside a WebView. Your UI is totally native here. For example when you create a button that is not a HTML button but it is the UIButton (iOS) / android.widget.Button (Android).
With their JavaScript runtime, you get 100% access to all the iOS / Android native apis. So you can reuse your web skills like XML / JavaScript / CSS and frameworks like Angular / Vue to build a pure native app. You may even share controller / model code (not HTML) between your web and mobile app.
Since the components you specified are based on HTML, you will not be able to use them in NativeScript. You have use it's native UI widgets.
answered Nov 16 at 15:31
Manoj
4,2811920
4,2811920
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53335054%2fwhat-is-the-difference-in-using-angular-vs-angular-nativescript-components%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What you mean by Angular vs Nativescript Angular components? Nativescript Angular or Vue were introduced to allow web developers who are familiar with these frameorks to reuse their skillset and eventually share their code between web and native mobile apps. Even if you are not familiar with these framework it's wise to pick one up as it gives you a lot of features out of the box which you might have to do on your own when using Nativescript Core.
– Manoj
Nov 16 at 9:46
There exist the legacy angular components from google itself like angular material. But there also exist the UI-Widgets from angular-nativescript: docs.nativescript.org/ui/basics click on the "UI Widgets" menu link then many components are listed.
– Elisabeth
Nov 16 at 15:14