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
pip freeze > requirements.txt | |
pip install -r requirements.txt | |
###### Requirements without Version Specifiers ###### | |
nose | |
###### Requirements with Version Specifiers ###### | |
docopt == 0.6.1 # Version Matching. Must be version 0.6.1 | |
keyring >= 4.1.1 # Minimum version 4.1.1 | |
coverage != 3.5 # Version Exclusion. Anything except version 3.5 |
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(const MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
const MyApp({super.key}); | |
@override |