Created
January 5, 2023 03:55
-
-
Save josue1dario2/05168a9fab4de582e1b6bff5caaf02b7 to your computer and use it in GitHub Desktop.
3.Consumer Button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CustomerButton extends StatelessWidget { | |
const CustomerButton({Key? key}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
body: Center( | |
child: Column( | |
children: const [ | |
SizedBox( | |
height: 200, | |
), | |
ButtonRegister(navigator: , text: 'Registrar datos biométricos',), | |
SizedBox( | |
height: 20, | |
), | |
ButtonAdd(navigator: null, text: 'Agregar operarios',) | |
], | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment