Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 390 Bytes

File metadata and controls

31 lines (21 loc) · 390 Bytes
description Soluções comuns para todo aplicativo

Copia e Cola

Novo projeto:

flutter create --org br.com --description "A leitura engrandece a alma" books

AppBar transparente:

AppBar(
  elevation: 0,
  backgroundColor: Colors.transparent,
)

Remover o banner de debug:

MaterialApp(
  debugShowCheckedModeBanner: false
)