This commit is contained in:
Patrick Alvin Alcala 2025-03-14 10:18:21 +08:00
parent e3dc94a768
commit 08de65a681
8 changed files with 251 additions and 68 deletions

View file

@ -15,7 +15,15 @@ class GlossyContainerWidget extends StatelessWidget {
width: MediaQuery.of(context).size.width,
borderRadius: const BorderRadius.all(Radius.circular(16)),
color: const Color.fromRGBO(20, 13, 22, 1),
border: Border.all(width: 0, color: const Color.fromRGBO(169, 132, 172, 1)),
border: Border.all(width: 0, color: const Color.fromRGBO(216, 176, 219, 1)),
boxShadow: [
BoxShadow(
color: const Color.fromRGBO(78, 45, 79, 0.4),
spreadRadius: 1,
blurRadius: 4,
offset: const Offset(0, 3), // changes position of shadow
),
],
child: Padding(
padding: const EdgeInsets.fromLTRB(32, 32, 32, 40),
child: child,