Skip to content

Commit 5def1ec

Browse files
committed
Substitui print por debugPrint nas interações dos botões para melhor depuração
1 parent 51a341d commit 5def1ec

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

example/lib/main.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ class _MyHomePageState extends State<MyHomePage> {
207207
Caixa(
208208
molde: moldeButton,
209209
onTap: () {
210-
print("Botão 01");
210+
debugPrint("Botão 01");
211211
},
212212
child: const Center(
213213
child: Text("Botão 01",
@@ -220,7 +220,7 @@ class _MyHomePageState extends State<MyHomePage> {
220220
Caixa(
221221
molde: moldeButton,
222222
onTap: () {
223-
print("Botão 02");
223+
debugPrint("Botão 02");
224224
},
225225
child: const Center(
226226
child: Text("Botão 02",
@@ -233,7 +233,7 @@ class _MyHomePageState extends State<MyHomePage> {
233233
Div(
234234
style: moldeButton,
235235
onTap: () {
236-
print("Div botão 03");
236+
debugPrint("Div botão 03");
237237
},
238238
child: const Center(
239239
child: Text("Div botão 03",

0 commit comments

Comments
 (0)