Created
January 2, 2023 02:48
-
-
Save josue1dario2/d9734aee4d25558ca84ba91538f48097 to your computer and use it in GitHub Desktop.
2. Container1
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 Container1 extends StatelessWidget { | |
const Container1({super.key}); | |
@override | |
Widget build(BuildContext context) { | |
return SizedBox( | |
height: 60, | |
width: 80, | |
child: Column( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: [ | |
Row( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: const [ | |
CustomText( | |
text: '17', | |
size: 16, | |
weight: FontWeight.w600, | |
color: Color(0xFF726E79)), | |
CustomText( | |
text: '/22', | |
size: 16, | |
weight: FontWeight.w400, | |
color: Color(0xFFA19EA6)), | |
], | |
), | |
const CustomText( | |
text: 'Activos hoy', | |
size: 10, | |
weight: FontWeight.w400, | |
color: Color(0xFFA19EA6)) | |
], | |
)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment