Pages Added + Provider Function Extented

Missing Pages were added (currently no content)

Provider changes the title to the right one
This commit is contained in:
Ali
2024-11-21 14:00:10 +01:00
parent 892b72187a
commit 5ce05fcc95
5 changed files with 69 additions and 21 deletions
+10
View File
@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class PageService extends StatelessWidget {
const PageService({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}