diff --git a/README.md b/README.md index 2952d28d..c3d152de 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ npm run build ## Serve the documentation -Install the `serve` npm package globaly: +Install the `serve` npm package globally: ```bash npm install -g serve diff --git a/content/blog/2018-02-28-using-parse-in-nativescript-vue.md b/content/blog/2018-02-28-using-parse-in-nativescript-vue.md index 79d4136b..742eedad 100644 --- a/content/blog/2018-02-28-using-parse-in-nativescript-vue.md +++ b/content/blog/2018-02-28-using-parse-in-nativescript-vue.md @@ -11,7 +11,7 @@ This brings us to Parse. [Parse](http://parseplatform.org/) was handed over to t Lets see how we use Parse in NativeScript-Vue (it should also work in NativeScript). I am going to assume the following: * We are starting a new NativeScript-Vue project called `myApp` from scratch. -* You have already signed up for a Parse account at a hosting provider or created your own parse server on Heroku. If you dont have an account I would suggest [back4app.com](https://www.back4app.com) they have a generous free tier. +* You have already signed up for a Parse account at a hosting provider or created your own parse server on Heroku. If you don't have an account I would suggest [back4app.com](https://www.back4app.com) they have a generous free tier. Lets jump into it. Open terminal and enter the following to create a new NativeScript-Vue app diff --git a/content/docs/en/elements/action-bar/action-item.md b/content/docs/en/elements/action-bar/action-item.md index a06fb186..7f0e1041 100644 --- a/content/docs/en/elements/action-bar/action-item.md +++ b/content/docs/en/elements/action-bar/action-item.md @@ -49,7 +49,7 @@ You can use the `v-show` directive to show `` components based on a | `ios.systemIcon` | `Number` | Gets or sets the icon of the `ActionItem` for iOS. The value must be a number from the [`UIBarButtonSystemItem` enumeration](https://developer.apple.com/documentation/uikit/uibarbuttonitem/systemitem). | `android.systemIcon` | `String` | Gets or sets the icon of the `ActionItem` for Android. The value must be the name of a [drawable resource](https://developer.android.com/guide/topics/resources/drawable-resource). | `ios.position` | `String` | Gets or sets the position of the `ActionItem` within the `ActionBar` for iOS.
Valid values: `left` or `right`.
Default value is `left`. -| `android.position` | `String` | Gets or sets the position of the `ActionItem` within the `ActionBar` for Android.
Valid values:
`actionBar` (places the item in the ActionBar)
`popup` (places the item in the options menu; renders items as text)
`actionBarIfRoom` (places the item in the `ActionBar` if there is enough room for it there; otherwise, placess it in the options menu)
Default value is `actionBar`. +| `android.position` | `String` | Gets or sets the position of the `ActionItem` within the `ActionBar` for Android.
Valid values:
`actionBar` (places the item in the ActionBar)
`popup` (places the item in the options menu; renders items as text)
`actionBarIfRoom` (places the item in the `ActionBar` if there is enough room for it there; otherwise, places it in the options menu)
Default value is `actionBar`. ## Events diff --git a/content/docs/en/elements/components/activity-indicator.md b/content/docs/en/elements/components/activity-indicator.md index ed681689..4d28289c 100644 --- a/content/docs/en/elements/components/activity-indicator.md +++ b/content/docs/en/elements/components/activity-indicator.md @@ -4,7 +4,7 @@ apiRef: https://docs.nativescript.org/api-reference/classes/_ui_activity_indicat contributors: [MisterBrownRSA, rigor789, ikoevska] --- -`` is a UI component that shows a progress indicator signaling to the user of an operation running in the background. +`` is a UI component that shows a progress indicator signalling to the user of an operation running in the background. --- diff --git a/content/docs/en/elements/components/page.md b/content/docs/en/elements/components/page.md index 36924fa1..fb9b086b 100644 --- a/content/docs/en/elements/components/page.md +++ b/content/docs/en/elements/components/page.md @@ -21,7 +21,7 @@ contributors: [rigor789, ikoevska, msaelices] #### Using the `loaded` event for triggering UI changes -A typical scenario is performing UI changes after tha page is loaded. The recommended way to do it is by using the `loaded` event, triggered by NativeScript when the page is fully loaded: +A typical scenario is performing UI changes after the page is loaded. The recommended way to do it is by using the `loaded` event, triggered by NativeScript when the page is fully loaded: ```html diff --git a/content/docs/en/elements/components/text-field.md b/content/docs/en/elements/components/text-field.md index 8fee73e1..353f8b84 100644 --- a/content/docs/en/elements/components/text-field.md +++ b/content/docs/en/elements/components/text-field.md @@ -31,7 +31,7 @@ contributors: [MisterBrownRSA, rigor789, TheOriginalJosh, eddyverbruggen, ikoevs | `hint` | `String` | Gets or sets the placeholder text. | `isEnabled` | `Boolean` | Make the field disabled or enabled. Default value is `true`. | `editable` | `Boolean` | When `true`, indicates that the user can edit the value of the field. -| `maxLength` | `Number` | Limits input to the spcified number of characters. +| `maxLength` | `Number` | Limits input to the specified number of characters. | `secure` | `Boolean` | Hides the entered text when `true`. Use this property to create password input fields.
Default value: `false`. | `keyboardType` | `KeyboardType` | Shows a custom keyboard for easier text input.
Valid values: `datetime`, `phone`, `number`, `url`, or `email`. | `returnKeyType` | `ReturnKeyType` | Gets or sets the label of the return key.
Valid values: `done`, `next`, `go`, `search`, or `send`. diff --git a/content/docs/en/elements/layouts/grid-layout.md b/content/docs/en/elements/layouts/grid-layout.md index a9293114..f833f2de 100644 --- a/content/docs/en/elements/layouts/grid-layout.md +++ b/content/docs/en/elements/layouts/grid-layout.md @@ -36,7 +36,7 @@ The following example creates a simple 2-by-2 grid with fixed column widths and ### Grid layout with star sizing -The following example creates a grid with responsive design, where space is alotted proportionally to child elements. +The following example creates a grid with responsive design, where space is allotted proportionally to child elements. ```html diff --git a/content/docs/en/getting-started/2-playground-tutorial.md b/content/docs/en/getting-started/2-playground-tutorial.md index 225434b8..7058cbe6 100644 --- a/content/docs/en/getting-started/2-playground-tutorial.md +++ b/content/docs/en/getting-started/2-playground-tutorial.md @@ -325,7 +325,7 @@ Here's how your app will look at the start and at the end of this section. Out-of-the-box, the `` component detects a tap gesture for every item and emits an event for it. The event carries information about the index of the tapped array item and the array item itself. To let the user choose the outcome of a tap gesture and expand the functionality of your app, you can tie a dialog to the event. -[`dialogs`](https://docs.nativescript.org/api-reference/modules/_ui_dialogs_) is a globablly available module that provides several configurable dialog types for apps: alert, action, prompt, login, confirmation. This implementation relies on [`action()`](/en/docs/elements/dialogs/action) to let the user choose if they want to mark a task as completed or delete it from the list of active tasks. +[`dialogs`](https://docs.nativescript.org/api-reference/modules/_ui_dialogs_) is a globally available module that provides several configurable dialog types for apps: alert, action, prompt, login, confirmation. This implementation relies on [`action()`](/en/docs/elements/dialogs/action) to let the user choose if they want to mark a task as completed or delete it from the list of active tasks. ### Requirement implementation