This commit is contained in:
Christien Rioux 2024-01-26 21:02:11 -05:00
parent b35b618a4d
commit 7cf44ef192
21 changed files with 338 additions and 82 deletions

View 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');
}