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: () {}, ), ], ), ), ); } }