feat: initial Pyramid project scaffold
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class RoomsPage extends StatelessWidget {
|
||||
const RoomsPage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const Scaffold(
|
||||
body: Center(child: Text('Rooms')),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user