diff --git a/lib/pages/not_found_page.dart b/lib/pages/not_found_page.dart index 3f46a93..f92fe21 100644 --- a/lib/pages/not_found_page.dart +++ b/lib/pages/not_found_page.dart @@ -1,4 +1,3 @@ -import 'package:animated_background/animated_background.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart'; @@ -14,14 +13,10 @@ class _NotFoundPageState extends State @override Widget build(BuildContext context) { return Scaffold( - body: AnimatedBackground( - behaviour: RandomParticleBehaviour(), - vsync: this, - child: Center( - child: Text( - 'Page not found', - style: Theme.of(context).textTheme.headlineMedium, - ), + body: Center( + child: Text( + 'Page not found', + style: Theme.of(context).textTheme.headlineMedium, ), ), bottomSheet: Container(