Skip to content

Commit 232c051

Browse files
committed
chore: cleanup element docs
1 parent 9161502 commit 232c051

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/guide/create-custom-native-elements.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: Creating Custom Native Elements
3-
description: What to do when built-in elements don't meet your needs? You can create new custom native elements or extend existing ones to enhance behavior for all sorts of cases.
3+
description: What to do when built-in elements don't meet your needs?
44
contributors:
55
- NathanWalker
66
---
77

88
When working on view markup with NativeScript, a collection of elements you interact with are registered for you like [GridLayout](https://docs.nativescript.org/ui/grid-layout), [Button](https://docs.nativescript.org/ui/button), [Label](https://docs.nativescript.org/ui/label), etc. These are just commonly used elements.
99

10-
At anytime, you can create your own, extend others and fully customize views for your needs.
10+
You can create new custom native elements or extend existing ones to enhance behavior for all sorts of cases.
1111

12-
Let's first look at how you would register new elements across all flavors and then we'll discuss how to build one, starting with a simple example of a custom View class:
12+
Let's first look at how you would register new elements across all flavors and then we'll discuss how to build one, starting with a simple example of a custom View class.
1313

1414
```ts
1515
import { View } from '@nativescript/core'

content/guide/customizing-view-elements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Customizing View Elements
3-
description: If a @nativescript/core element offers common behavior but your app needs something extra from them, you can extend them.
3+
description: If a @nativescript/core element offers behavior that generally works but your app needs something extra from them, you can extend them.
44
contributors:
55
- NathanWalker
66
---

0 commit comments

Comments
 (0)