From db609c2f7c09add2efbf7063f050020d6335d01f Mon Sep 17 00:00:00 2001 From: Ricardo Dalarme Date: Tue, 24 Jan 2023 16:01:26 -0300 Subject: [PATCH] change(example): use debugPrint instead of log --- example/lib/main.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/example/lib/main.dart b/example/lib/main.dart index 4cb9ea9..14540c9 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -1,5 +1,3 @@ -import 'dart:developer'; - import 'package:example/example_candidate_model.dart'; import 'package:example/example_card.dart'; import 'package:flutter/material.dart'; @@ -75,6 +73,6 @@ class _ExamplePageState extends State { } void _swipe(int index, CardSwiperDirection direction) { - log("the card was swiped to the: " + direction.name); + debugPrint("the card was swiped to the: " + direction.name); } }