Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/ui/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class _HomePageState extends State<HomePage> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Lançamentos Total: R\$${_saldoTotal()}", style: TextStyle(color: Colors.black),),
title: Text("Wançamentos Totaw: R\$${_saldoTotal()}", style: TextStyle(color: Colors.black),),
backgroundColor: Colors.amber,
centerTitle: true,
),
Expand Down Expand Up @@ -115,7 +115,7 @@ class _HomePageState extends State<HomePage> {
mainAxisSize: MainAxisSize.min,
children: <Widget>[
FlatButton(
child: Text("Apagar",
child: Text("Apagaw",
style: TextStyle(color: Colors.red, fontSize: 20.0)),
onPressed: () {
helper.deleteLaunch(launcher[index].id);
Expand All @@ -126,7 +126,7 @@ class _HomePageState extends State<HomePage> {
},
),
FlatButton(
child: Text("Editar",
child: Text("Editaw",
style:
TextStyle(color: Colors.black, fontSize: 20.0)),
onPressed: () {
Expand Down
16 changes: 8 additions & 8 deletions lib/ui/launch_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ class _LaunchPageState extends State<LaunchPage> {
controller: _nameController,
focusNode: _nameFocus,
decoration: InputDecoration(
labelText: "Nome",
hintText: "Ex: Conta de luz...Boleto Escolar..."),
labelText: "Nyome",
hintText: "Ex: *abraço apertado* Conta de wuz...Boweto Escowaw..."),
onChanged: (text) {
_userEdited = true;
setState(() {
Expand All @@ -88,8 +88,8 @@ class _LaunchPageState extends State<LaunchPage> {
TextField(
controller: _detailsController,
decoration: InputDecoration(
labelText: "Detalhes",
hintText: "Ex: Conta fixa de luz paga todo mês..."),
labelText: "Detawhes",
hintText: "Ex: Conta fixa de wuz paga todo mês..."),
onChanged: (text) {
_userEdited = true;
_editedLaunch.details = text;
Expand All @@ -98,7 +98,7 @@ class _LaunchPageState extends State<LaunchPage> {
TextField(
controller: _valorController,
decoration: InputDecoration(
labelText: "Valor", hintText: "Ex: 10.0...250.0"),
labelText: "Vawow", hintText: "Ex: 10.0...250.0"),
onChanged: (text) {
_userEdited = true;
_editedLaunch.valor = text;
Expand All @@ -108,7 +108,7 @@ class _LaunchPageState extends State<LaunchPage> {
TextField(
controller: _vencController,
decoration: InputDecoration(
labelText: "Vencimento", hintText: "Ex: 10.05.2019"),
labelText: "Vencimento", hintText: "Ex: 10.05.2019 (que padwão de data é esse? >///<)"),
onChanged: (text) {
_userEdited = true;
_editedLaunch.venc = text;
Expand All @@ -128,8 +128,8 @@ class _LaunchPageState extends State<LaunchPage> {
showDialog(context: context,
builder: (context){
return AlertDialog(
title: Text("Descartar Alterações?"),
content: Text("Se sair as alterações serão perdidas."),
title: Text("descawtaw >w< Awtewações?!?!"),
content: Text("Se saiw as awtewações sewão p-pewdidas."),
actions: <Widget>[
FlatButton(
child: Text("Cancelar"),
Expand Down
6 changes: 3 additions & 3 deletions lib/ui/saldo_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class _SaldoPageState extends State<SaldoPage> {
},
controller: _salarioController,
decoration: InputDecoration(
labelText: "SALÁRIO ",
labelText: "SAWÁWIO ",
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SAWÁWIO ME PEGOU MUITO

labelStyle: TextStyle(color: Colors.black),
border: OutlineInputBorder(),
prefixText: "R\$",
Expand All @@ -83,7 +83,7 @@ class _SaldoPageState extends State<SaldoPage> {
child: Column(
children: <Widget>[
Text("R\$-${_saldoTotal()}", style: TextStyle(fontSize: 40.0, color: Colors.red),),
Text("SALDO: ${_salarioTotal()}", style: TextStyle(fontSize: 20.0),),
Text("SAWDO: ${_salarioTotal()}", style: TextStyle(fontSize: 20.0),),
],
),
),
Expand All @@ -100,7 +100,7 @@ class _SaldoPageState extends State<SaldoPage> {
padding: const EdgeInsets.all(10.0),
child: Container(
child: const Text(
"Ver Lançamentos",
"Vew W-Wançamentos",
style: TextStyle(fontSize: 20.0),
),
),
Expand Down