Cancel flutter timer
I want to stop the timer when I navigate to another page. The following is my code //imports late Timer timer; class MyHomePage extends StatefulWidget { const MyHomePage({super.key, required this.title}); final String title; @override State<MyHomePage> createState() => _MyHomePageState(); } class…