initial router setup

This commit is contained in:
2023-08-27 16:43:24 -03:00
parent c02ea580c7
commit 30c69dd5a8
9 changed files with 118 additions and 16 deletions
+15
View File
@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class NcBasePage extends StatelessWidget {
const NcBasePage({super.key, required this.body});
final Widget body;
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: const Color(0xffa600f9),
body: body,
);
}
}