mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-12-14 02:24:27 -05: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');
|
||
|
}
|