Done login routine

This commit is contained in:
Andrew 2023-04-08 03:51:25 +07:00
commit f9b1b25e91
20 changed files with 983 additions and 0 deletions

View file

@ -0,0 +1,21 @@
import 'package:animated_background/animated_background.dart';
import 'package:flutter/material.dart';
import 'package:flutter/src/scheduler/ticker.dart';
class NotFoundPage extends StatelessWidget {
const NotFoundPage({super.key});
@override
Widget build(BuildContext context) {
return AnimatedBackground(
behaviour: RandomParticleBehaviour(),
vsync: Scaffold.of(context),
child: Center(
child: Text(
'Page not found',
style: Theme.of(context).textTheme.headlineMedium,
),
),
);
}
}