Skip to content

Instantly share code, notes, and snippets.

View Anderson-Andre-P's full-sized avatar
📱
Mobile Developer

Anderson André Anderson-Andre-P

📱
Mobile Developer
View GitHub Profile
print(f'\033[1;33m{"Algoritmo elaborado por Anderson André": ^60} \033[m \n'
f'\033[1;33m{"VALIDADOR DE CPF":-^60} \n\n'
f'Esse é um validador de CPF.\n'
f'1- Apenas números.\n'
f'2- Digitar os onze dígitos do CPF.\n'
f'3- Não será considerado números após o 11º digitado.\n'
f'4- Pra sair digite Sair.\033[m \n')
CPF = 0
@Anderson-Andre-P
Anderson-Andre-P / android-ci.yml
Created July 20, 2023 18:00
yml to build Android in Flutter
name: Android CI
permissions: write-all
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
on:
push:
@Anderson-Andre-P
Anderson-Andre-P / settings.json
Created October 18, 2024 20:11
Settings for local project in vs code
{
"files.exclude": {
".vscode": false,
".gitignore": false,
".metadata": true,
"build": true,
"test": true,
".flutter-plugins": true,
".flutter-plugins-dependencies": true,
"LICENSE": true,

The Flutter Architecture & Components Showcase Handbook

A Complete Beginner-to-Advanced Training Guide for Building a Production-Grade Flutter Showcase Application

Who this is for: Someone who has never written Flutter and has never studied software architecture. Every concept is explained from zero, justified, and then implemented. Nothing is assumed.

What you will build: A single Flutter application — the Showcase — made of many independent pages. Each page demonstrates one widget, component, pattern, or architectural concept, all wired into the same Clean Architecture + BLoC backbone. Think of it as a living museum of Flutter where every exhibit is also a lesson in professional structure.

How to read it: Top to bottom the first time. After that, jump to any chapter — each is self-contained and follows the same template.