Colors.transparent opacity make background color darker – Flutter
I want to set a gradient as a background color for my ElevatedButton. So I did this : Container( height: 100, width: 100, decoration: const BoxDecoration( gradient: LinearGradient( begin: Alignment.topRight, end: Alignment.bottomLeft, colors: [ Color(0xFFFE1871), Color(0xFFFD0E38), Color(0xFFFF0205), ], )), child:…