Skip to content
This repository has been archived by the owner on Nov 17, 2022. It is now read-only.

Update intro.md #1920

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/code-sharing/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ To create two separate templates, you just need to use a naming convention. Simp
<GridLayout columns="*, auto, auto, auto, auto">
<Label [text]="item.name"></Label>
<Label [text]="item.quantity" col="1"></Label>
<Button [text]="➕" (tap)="increaseQuantity(item)"></Button>
<Button [text]="➖" (tap)="decreaseQuantity(item)"></Button>
<Button [text]="🗑" (tap)="removeItem(item)"></Button>
<Button text="➕" (tap)="increaseQuantity(item)"></Button>
<Button text="➖" (tap)="decreaseQuantity(item)"></Button>
<Button text="🗑" (tap)="removeItem(item)"></Button>
</GridLayout>
</ng-template>
</ListView>
Expand Down