+
+ diff --git a/README.md b/README.md index c927d6a..73ce438 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,2 @@ -# lixo +# PCastLive TV -A new Flutter project. - -## Getting Started - -This project is a starting point for a Flutter application. - -A few resources to get you started if this is your first Flutter project: - -- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) -- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) - -For help getting started with Flutter development, view the -[online documentation](https://docs.flutter.dev/), which offers tutorials, -samples, guidance on mobile development, and a full API reference. diff --git a/lib/pages/initial_page.dart b/lib/pages/initial_page.dart index 06ea3a3..69a5e11 100644 --- a/lib/pages/initial_page.dart +++ b/lib/pages/initial_page.dart @@ -7,28 +7,37 @@ class InitialPage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( + backgroundColor: const Color(0xffa600f9), body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ NcButton( caption: "Quero me registrar", - backgroundColor: Colors.green, + backgroundColor: Colors.black, captionColor: Colors.white, - onPressed: () {}, + onPressed: _register, ), const SizedBox( height: 40, ), NcButton( caption: "Já sou cliente", - backgroundColor: Colors.green, + backgroundColor: Colors.black, captionColor: Colors.white, - onPressed: () {}, + onPressed: _login, ), ], ), ), ); } + + void _register() { + print("Quero me registrar"); + } + + void _login() { + print("Quero fazer login"); + } } diff --git a/web/favicon.png b/web/favicon.png index 8aaa46a..3e5ec77 100644 Binary files a/web/favicon.png and b/web/favicon.png differ diff --git a/web/index.html b/web/index.html index 425bfe5..f5376e0 100644 --- a/web/index.html +++ b/web/index.html @@ -1,5 +1,6 @@ +
- + - + -
+