Feat: Fügt die Liste für wiederkehrende Transaktionen hinzu
This commit is contained in:
@@ -27,7 +27,7 @@ class _AccountSelectState extends State<AccountSelect> {
|
||||
|
||||
_accountController.selected.addListener(() {
|
||||
setState(() {
|
||||
if (context.mounted) {
|
||||
if (mounted) {
|
||||
_selected = _accountController.selected.value;
|
||||
}
|
||||
});
|
||||
@@ -35,7 +35,7 @@ class _AccountSelectState extends State<AccountSelect> {
|
||||
|
||||
_accountController.accounts.addListener(() {
|
||||
setState(() {
|
||||
if (context.mounted) {
|
||||
if (mounted) {
|
||||
_accounts = _accountController.accounts.value;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user