Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wrussell1999/demo-countdown-app-live
⏱️ Flutter app to display the demo countdown
https://github.com/wrussell1999/demo-countdown-app-live
Last synced: about 1 month ago
JSON representation
⏱️ Flutter app to display the demo countdown
- Host: GitHub
- URL: https://github.com/wrussell1999/demo-countdown-app-live
- Owner: wrussell1999
- Created: 2020-05-01T20:35:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-07T14:01:00.000Z (over 4 years ago)
- Last Synced: 2024-10-28T20:50:04.281Z (3 months ago)
- Language: Dart
- Size: 169 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demo Countdown - Live View (Flutter)
Hackathon Demo Countdown app to display the demo countdown on both iOS and Android
## 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);
```