started initial page

This commit is contained in:
2023-08-27 09:38:28 -03:00
parent 47394d763d
commit 5d558032c0
9 changed files with 128 additions and 114 deletions
+34
View File
@@ -0,0 +1,34 @@
import 'package:flutter/material.dart';
import 'package:lixo/components/nc_button.dart';
class InitialPage extends StatelessWidget {
const InitialPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
NcButton(
caption: "Quero me registrar",
backgroundColor: Colors.green,
captionColor: Colors.white,
onPressed: () {},
),
const SizedBox(
height: 40,
),
NcButton(
caption: "Já sou cliente",
backgroundColor: Colors.green,
captionColor: Colors.white,
onPressed: () {},
),
],
),
),
);
}
}