python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
onDestroy or dispose in flutter
I am developing a note app, and I want to save my note when I closed the app (when removing the app from recent apps).
I tried dispose() method but it did not work.
I tried :
@override
void didChang...
wafaa sisalem
Votes: 0
Answers: 4
C# Do I use dispose() correctly?
I studying C# IDisposable now at ASP.NET MVC
I implemented code like this,
using System;
using System.Collections.Generic;
using System.ComponentModel;
namespace DisposeTest.Controllers
{
public ...
shunman
Votes: 0
Answers: 1
Flutter - TextEditingController used after being disposed
I made following simple class to allow entering a string:
import 'package:flutter/material.dart';
class MyDialog {
late TextEditingController _controller;
Future<String> showMyDialog(Build...
MartinYakuza
Votes: 0
Answers: 2