About gregfenton
Recent supporters
Posts
Cloud Firestore is Google's massively scalable, serverless, NoSQL "document-store" database. Many people use Firestore as part of a Firebase project. Firestore is really a system of storing Documents . A Document is a "set of key-value pairs", by which you can think of a "JSON Object" or a "Map": { name: "Fred Flintstone", age: 42, favoriteFoods: [ "Bronto Burgers", "Dino Eggs" ], spouse: { name: ...
Designing Firestore Collections and Documents
Jun 20, 2023
1000 views
[See other posts about Expo ] When you run expo start what you end up launching on your development computer is the Expo Development System (also known as "Metro"), and in turn that will run the Expo Go app on your emulator or device. Expo Go is a pre-built app, distributed by the Expo company, through the app stores as well as it can be installed by Metro onto your local simulator/emulator. One o...
Expo Go: great tool -- and release a custom client
Mar 05, 2023
661 views