mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-05-02 14:26:12 -04:00
refactor
This commit is contained in:
parent
b35b618a4d
commit
7cf44ef192
21 changed files with 338 additions and 82 deletions
23
lib/layout/home/home_account_locked.dart
Normal file
23
lib/layout/home/home_account_locked.dart
Normal file
|
@ -0,0 +1,23 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
class HomeAccountLocked extends StatefulWidget {
|
||||
const HomeAccountLocked({super.key});
|
||||
|
||||
@override
|
||||
HomeAccountLockedState createState() => HomeAccountLockedState();
|
||||
}
|
||||
|
||||
class HomeAccountLockedState extends State<HomeAccountLocked> {
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => const Text('Account locked');
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue