Problem with TextEditingController on back pressed

Issue I have the following StatefulWidget in my Flutter application: class EditProfilePage extends StatefulWidget { const EditProfilePage({super.key}); @override State<EditProfilePage> createState() => _EditProfilePageState(); } class _EditProfilePageState extends State<EditProfilePage> { ProfileClient client = ProfileClient(); TextEditingController usernameController = TextEditingController(); Future<ProfileResponse>? futureProfileResponse; @override void

Continue reading

Flutter hive unit test

Issue I got a problem with testing function calling hive put method, now i’m gonna provide my code for the function, test and the error message ///////////////////// Function impl. //////////////////////// class AppLocalDataSourceImpl implements AppLocalDataSource { static const _kTag = "AppLocalDataSource";

Continue reading