Skip to content

Instantly share code, notes, and snippets.

@josue1dario2
Created January 2, 2023 02:48
Show Gist options
  • Save josue1dario2/d9734aee4d25558ca84ba91538f48097 to your computer and use it in GitHub Desktop.
Save josue1dario2/d9734aee4d25558ca84ba91538f48097 to your computer and use it in GitHub Desktop.
2. Container1
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