This file contains hidden or 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
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Flutter Demo', | |
| home: HomePage(), |
This file contains hidden or 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
| const execSync = require('child_process').execSync; | |
| const fs = require("fs"); | |
| const path = require("path"); | |
| const rulesPath = path.join(__dirname, "..", "rules", "firestore.rules"); | |
| function getRules() { | |
| return fs.readFileSync(rulesPath).toString(); | |
| } |
This file contains hidden or 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
| [ | |
| { | |
| "name": "accessibility", | |
| "description": "Accessibility, e.g. VoiceOver or TalkBack. (aka a11y)", | |
| "color": "38d8c8" | |
| }, | |
| { | |
| "name": "crash", | |
| "description": "App crashes and is unusable in a significant way.", | |
| "color": "900000" |
NewerOlder