mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
24 lines
487 B
Dart
24 lines
487 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class HomeAccountMissing extends StatefulWidget {
|
|
const HomeAccountMissing({super.key});
|
|
|
|
@override
|
|
HomeAccountMissingState createState() => HomeAccountMissingState();
|
|
}
|
|
|
|
class HomeAccountMissingState extends State<HomeAccountMissing> {
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) => const Text('Account missing');
|
|
}
|