Skip to content

Commit

Permalink
WIP with example app etc
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Duncalf committed Sep 29, 2022
1 parent bb92553 commit f4f34aa
Show file tree
Hide file tree
Showing 19 changed files with 5,055 additions and 4,430 deletions.
4 changes: 2 additions & 2 deletions example/app/models/Task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import {Realm} from '@realm/react';
export class Task extends Realm.Object<Task> {
_id: Realm.BSON.ObjectId = new Realm.BSON.ObjectId();
description!: string;
isComplete!: boolean = false;
createdAt!: Date = new Date();
isComplete: boolean = false;
createdAt: Date = new Date();
userId!: string;

static primaryKey = '_id';
Expand Down
10 changes: 2 additions & 8 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ PODS:
- FlipperKit/Core
- FlipperKit/FlipperKitNetworkPlugin
- fmt (6.2.1)
- GCDWebServer (3.5.4):
- GCDWebServer/Core (= 3.5.4)
- GCDWebServer/Core (3.5.4)
- glog (0.3.5)
- libevent (2.1.12)
- OpenSSL-Universal (1.1.1100)
Expand Down Expand Up @@ -355,8 +352,7 @@ PODS:
- React-jsi (= 0.70.0)
- React-logger (= 0.70.0)
- React-perflogger (= 0.70.0)
- RealmJS (10.20.0):
- GCDWebServer
- RealmJS (11.0.0-rc.1):
- React
- SocketRocket (0.6.0)
- Yoga (1.14.0)
Expand Down Expand Up @@ -436,7 +432,6 @@ SPEC REPOS:
- Flipper-RSocket
- FlipperKit
- fmt
- GCDWebServer
- libevent
- OpenSSL-Universal
- SocketRocket
Expand Down Expand Up @@ -528,7 +523,6 @@ SPEC CHECKSUMS:
Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
GCDWebServer: 2c156a56c8226e2d5c0c3f208a3621ccffbe3ce4
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
Expand Down Expand Up @@ -559,7 +553,7 @@ SPEC CHECKSUMS:
React-RCTVibration: 5499b77c0fd57f346a5f0b36bb79fdb020d17d3e
React-runtimeexecutor: 80c195ffcafb190f531fdc849dc2d19cb4bb2b34
ReactCommon: de55f940495d7bf87b5d7bf55b5b15cdd50d7d7b
RealmJS: 50ed14de48cf542be1ebad3bc75587ce59bc8571
RealmJS: 2f39ca82a7e299c0b17f0b18508564be0e67c1d9
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
Yoga: 82c9e8f652789f67d98bed5aef9d6653f71b04a9
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
Expand Down
3 changes: 3 additions & 0 deletions example/ios/RealmExample.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"react": "18.1.0",
"react-native": "0.70.0",
"react-native-get-random-values": "^1.8.0",
"realm": "^10.19.0"
"realm": "*"
},
"devDependencies": {
"@babel/core": "^7.12.9",
Expand Down
Loading

0 comments on commit f4f34aa

Please sign in to comment.