mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-01-21 04:51:01 -05: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);
|
||
|
}
|