mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-05-14 04:02:17 -04:00
refactor
This commit is contained in:
parent
b35b618a4d
commit
7cf44ef192
21 changed files with 338 additions and 82 deletions
25
lib/layout/home/home_no_active.dart
Normal file
25
lib/layout/home/home_no_active.dart
Normal file
|
@ -0,0 +1,25 @@
|
|||
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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue