Criação do Reception Page

This commit is contained in:
Lucas Martin Mota 2024-08-21 17:27:46 -03:00
parent fc06f41a25
commit 787d179856
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
class ReceptionPageWidget extends StatelessWidget {
const ReceptionPageWidget({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Text('Olá mundo!'),
);
}
}