Skip to content

Instantly share code, notes, and snippets.

@josue1dario2
Created January 5, 2023 03:55
Show Gist options
  • Save josue1dario2/05168a9fab4de582e1b6bff5caaf02b7 to your computer and use it in GitHub Desktop.
Save josue1dario2/05168a9fab4de582e1b6bff5caaf02b7 to your computer and use it in GitHub Desktop.
3.Consumer Button
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