mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
33 lines
948 B
Dart
33 lines
948 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class HomeAccountInvalid extends StatefulWidget {
|
||
|
const HomeAccountInvalid({super.key});
|
||
|
|
||
|
@override
|
||
|
HomeAccountInvalidState createState() => HomeAccountInvalidState();
|
||
|
}
|
||
|
|
||
|
class HomeAccountInvalidState extends State<HomeAccountInvalid> {
|
||
|
@override
|
||
|
void initState() {
|
||
|
super.initState();
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
void dispose() {
|
||
|
super.dispose();
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) => const Text('Account invalid');
|
||
|
}
|
||
|
// xxx: delete invalid account
|
||
|
// Future.delayed(0.ms, () async {
|
||
|
// await showErrorModal(context, translate('home.invalid_account_title'),
|
||
|
// translate('home.invalid_account_text'));
|
||
|
// // Delete account
|
||
|
// await AccountRepository.instance.deleteLocalAccount(activeUserLogin);
|
||
|
// // Switch to no active user login
|
||
|
// await AccountRepository.instance.switchToAccount(null);
|
||
|
// });
|