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