Feedback Form 03.2019 #1570
Description
- missing DataForm Custom Editor example - https://docs.nativescript.org/vuejs/ns-ui/DataForm/dataform-editors-list
- extend the article - https://docs.nativescript.org/angular/code-sharing/intro
Does not outline how the component will know which template to use.
-
improve and extend the article by providing examples for the supported methods & properties - https://docs.nativescript.org/ui/ns-ui-widgets/scroll-view @NickIliev
-
based on a user's report the HTTP examples are not working with error callback and have to use
catch
instead. Check the examples and improve the snippets if needed. @NickIliev
e.g.
Not working
httpModule.getJSON("https://httpbin.org/get").then((r) => {
}, (e) => {
});
Working
httpModule.getJSON("https://httpbin.org/get").then((r) => {
}).catch(e => {
});
-
wrong example -0 the CSS class name is mistaken! https://docs.nativescript.org/ui/animation-css#css-animations @NickIliev
-
consider adding Playgrond demo (user's request) https://docs.nativescript.org/angular/ui/ng-ui-widgets/animations @NickIliev
-
check and improve isDataUri example (reports that it is not working)
-
extend the article - https://docs.nativescript.org/tooling/docs-cli/project/configuration/generate
the schematic names that can be used in tns generate
-
add
Read More
section in the article - https://docs.nativescript.org/tooling/publishing/creating-launch-screens-android -
extend SideDrawer Vue getting started examples - https://docs.nativescript.org/vuejs/ns-ui/SideDrawer/getting-started