Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wrussell1999/demo-countdowns-app

⏱️ Flutter app to create, join, and control the demo countdown
https://github.com/wrussell1999/demo-countdowns-app

Last synced: about 1 month ago
JSON representation

⏱️ Flutter app to create, join, and control the demo countdown

Awesome Lists containing this project

README

        

# Demo Countdown - Controls (Flutter)

Controller for the Hackathon Demo Countdown app to control the data inside of Firebase.

## Setup

This app uses a Firebase Firestore NoSQL Database

To get this to work with Firebase, you will need to setup 4 apps on Firebase:

1. iOS
2. Android
3. Web
4. macOS (use iOS instructions)

All the instructions can be found [here](https://firebase.google.com/docs/flutter/setup).

For Web, make a file inside `web` called `google-services.js` and paste the creds into it:

```javascript
var firebaseConfig = {
apiKey: "CREDS",
authDomain: "CREDS",
databaseURL: "CREDS",
projectId: "CREDS",
storageBucket: "CREDS",
messagingSenderId: "CREDS",
appId: "CREDS",
measurementId: "CREDS"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
```