├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | **/ios/Flutter/.last_build_id 26 | .dart_tool/ 27 | .flutter-plugins 28 | .flutter-plugins-dependencies 29 | .packages 30 | .pub-cache/ 31 | .pub/ 32 | /build/ 33 | 34 | # Web related 35 | lib/generated_plugin_registrant.dart 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | 43 | # Android Studio will place build artifacts here 44 | /android/app/debug 45 | /android/app/profile 46 | /android/app/release -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](https://i.imgur.com/d2Hznpb.png) 2 | 3 | # Edição #1 | 6 a 10 dez/2021 4 | 5 | # Informações 6 | 7 | Seja muito bem vinda e muito bem vindo ao evento do Flutter Race, nesse guia tem todas as instruções necessárias para você se inscrever 8 | 9 | 1. Se cadastrar em nossa plataforma 10 | 11 | [Cadastre-se no Flutter Race #1](https://cadastro.flutterrace.com/primeira) 12 | 13 | 2. Acesse seu email, pois tem informações importantes lá. 14 | 3. Interaja em nossa comunidade, mande suas dúvidas 15 | 4. Se prepara e vamos correr! 16 | --------------------------------------------------------------------------------