Skip to content

Instantly share code, notes, and snippets.

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