Created
January 2, 2023 02:48
-
-
Save josue1dario2/80e5a6b5f1b77e612e95fff1fb8d519c to your computer and use it in GitHub Desktop.
3. Container2
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), | |
borderRadius: BorderRadius.all(Radius.circular(8))), | |
child: Column( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: const [ | |
ActiveIndicator( | |
value: 17, | |
color: Color(0xFF482F74), | |
sizeIcon: 18, | |
sizeText: 16, | |
), | |
CustomText( | |
text: 'Ahora', | |
size: 10, | |
weight: FontWeight.w400, | |
color: Color(0xFF9356D1)) | |
], | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment