How can I get the following effect on the Card widget?
This is my code:
Card(
elevation: 4,
color: const Color(AppColors.brighterBackground),
child: Padding(
padding: EdgeInsets.only(
left: horizontalPadding,
top: verticalPadding,
right: horizontalPadding,
bottom: verticalPadding),
child: Column(children: [
Text('CENTER HORIZONTALLY AND VERTICALLY',
style: TextStyle(color: Colors.white, fontSize: contentSize)),
Text('BOTTOM-RIGHT',
style: TextStyle(color: Colors.white, fontSize: contentSize))
])))