This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Firestore anytime soon? #507 (orderBy, limit)
- Loading branch information
1 parent
8406397
commit 5825dc2
Showing
5 changed files
with
135 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
<ActionBar title="My App" class="action-bar"> | ||
</ActionBar> | ||
|
||
<StackLayout class="page"> | ||
<Label text="Authentication" class="h2"></Label> | ||
<Button text="login anonymously" (tap)="loginAnonymously()" class="button button-user"></Button> | ||
<Label text="Firestore" class="h2"></Label> | ||
<Button text="Add" (tap)="firestoreAdd()" class="button"></Button> | ||
<Button text="Set" (tap)="firestoreSet()" class="button"></Button> | ||
<Button text="Set (auto id)" (tap)="firestoreSetByAutoID()" class="button"></Button> | ||
<Button text="Update" (tap)="firestoreUpdate()" class="button"></Button> | ||
<Button text="Get" (tap)="firestoreGet()" class="button"></Button> | ||
<Button text="Where" (tap)="firestoreWhere()" class="button"></Button> | ||
<Button text="Delete" (tap)="firestoreDelete()" class="button"></Button> | ||
|
||
</StackLayout> | ||
<ScrollView> | ||
<StackLayout class="page"> | ||
<Label text="Authentication" class="h2"></Label> | ||
<Button text="login anonymously" (tap)="loginAnonymously()" class="button button-user"></Button> | ||
<Label text="Firestore" class="h2"></Label> | ||
<Button text="Add" (tap)="firestoreAdd()" class="button"></Button> | ||
<Button text="Set" (tap)="firestoreSet()" class="button"></Button> | ||
<Button text="Set (auto id)" (tap)="firestoreSetByAutoID()" class="button"></Button> | ||
<Button text="Update" (tap)="firestoreUpdate()" class="button"></Button> | ||
<Button text="Get" (tap)="firestoreGet()" class="button"></Button> | ||
<Button text="Where" (tap)="firestoreWhere()" class="button"></Button> | ||
<Button text="Where, Order, Limit" (tap)="firestoreWhereOrderLimit()" class="button"></Button> | ||
<Button text="Delete" (tap)="firestoreDelete()" class="button"></Button> | ||
</StackLayout> | ||
</ScrollView> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters