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 LogoButton extends StatelessWidget { | |
const LogoButton({super.key, required this.navigator}); | |
final Widget navigator; | |
@override | |
Widget build(BuildContext context) { | |
Size size = MediaQuery.of(context).size; | |
return MaterialButton( | |
onPressed: () { |
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( |
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 BorderButton extends StatelessWidget { | |
const BorderButton({Key? key, required this.navigator, required this.text}) | |
: super(key: key); | |
final Widget navigator; | |
final String text; | |
@override | |
Widget build(BuildContext context) { | |
Size size = MediaQuery.of(context).size; |
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 GenericButton extends StatelessWidget { | |
const GenericButton({ | |
Key? key, | |
required this.navigator, | |
required this.text, | |
required this.sizeButton, | |
required this.hasIcon, | |
required this.ulrImage, | |
}) : super(key: key); |
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( |
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 ButtonAdd extends StatelessWidget { | |
const ButtonAdd({Key? key, required this.navigator, required this.text}) | |
: super(key: key); | |
final Widget navigator; | |
final String text; | |
@override | |
Widget build(BuildContext context) { | |
Size size = MediaQuery.of(context).size; |
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 ButtonRegister extends StatelessWidget { | |
const ButtonRegister({Key? key, required this.navigator, required this.text}) | |
: super(key: key); | |
final Widget navigator; | |
final String text; | |
@override | |
Widget build(BuildContext context) { | |
Size size = MediaQuery.of(context).size; |
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 ActiveIndicator extends StatelessWidget { | |
const ActiveIndicator( | |
{super.key, | |
required this.value, | |
required this.color, | |
required this.sizeIcon, | |
required this.sizeText}); | |
final double sizeIcon; | |
final double sizeText; |
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 CardWidget extends StatelessWidget { | |
const CardWidget({super.key}); | |
@override | |
Widget build(BuildContext context) { | |
return Container( | |
margin: const EdgeInsets.only(bottom: 15), | |
height: 90, | |
width: 390, | |
decoration: const BoxDecoration( |
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 Container2 extends StatelessWidget { | |
const Container2({super.key}); | |
@override | |
Widget build(BuildContext context) { | |
return Container( | |
height: 70, | |
width: 90, | |
decoration: const BoxDecoration( | |
color: Color(0xFFF3F3F4), |