From f7f2abcbfa6592fce3cf12ed9ad1039b8cbcae37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Guilherme=20dos=20Santos=20Moreira?= Date: Thu, 26 Oct 2023 08:28:55 -0400 Subject: [PATCH] finyawizando o twabawho *boops your nose* e mewhowias OwO --- lib/ui/home_page.dart | 6 +++--- lib/ui/launch_page.dart | 16 ++++++++-------- lib/ui/saldo_page.dart | 6 +++--- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/ui/home_page.dart b/lib/ui/home_page.dart index 805db0c..27c60ce 100644 --- a/lib/ui/home_page.dart +++ b/lib/ui/home_page.dart @@ -22,7 +22,7 @@ class _HomePageState extends State { 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, ), @@ -115,7 +115,7 @@ class _HomePageState extends State { mainAxisSize: MainAxisSize.min, children: [ FlatButton( - child: Text("Apagar", + child: Text("Apagaw", style: TextStyle(color: Colors.red, fontSize: 20.0)), onPressed: () { helper.deleteLaunch(launcher[index].id); @@ -126,7 +126,7 @@ class _HomePageState extends State { }, ), FlatButton( - child: Text("Editar", + child: Text("Editaw", style: TextStyle(color: Colors.black, fontSize: 20.0)), onPressed: () { diff --git a/lib/ui/launch_page.dart b/lib/ui/launch_page.dart index f4c73ac..e50d059 100644 --- a/lib/ui/launch_page.dart +++ b/lib/ui/launch_page.dart @@ -76,8 +76,8 @@ class _LaunchPageState extends State { 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(() { @@ -88,8 +88,8 @@ class _LaunchPageState extends State { 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; @@ -98,7 +98,7 @@ class _LaunchPageState extends State { 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; @@ -108,7 +108,7 @@ class _LaunchPageState extends State { 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; @@ -128,8 +128,8 @@ class _LaunchPageState extends State { 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: [ FlatButton( child: Text("Cancelar"), diff --git a/lib/ui/saldo_page.dart b/lib/ui/saldo_page.dart index 7d2654c..b12f4be 100644 --- a/lib/ui/saldo_page.dart +++ b/lib/ui/saldo_page.dart @@ -70,7 +70,7 @@ class _SaldoPageState extends State { }, controller: _salarioController, decoration: InputDecoration( - labelText: "SALÁRIO ", + labelText: "SAWÁWIO ", labelStyle: TextStyle(color: Colors.black), border: OutlineInputBorder(), prefixText: "R\$", @@ -83,7 +83,7 @@ class _SaldoPageState extends State { child: Column( children: [ 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),), ], ), ), @@ -100,7 +100,7 @@ class _SaldoPageState extends State { padding: const EdgeInsets.all(10.0), child: Container( child: const Text( - "Ver Lançamentos", + "Vew W-Wançamentos", style: TextStyle(fontSize: 20.0), ), ),