Я хочу сделать этот дизайн кнопки, но пока не могу сделать это правильно, я играл с backgroundBlendMode, но у меня это невозможно. [code]Widget buildButton(String value) { return Container( margin: const EdgeInsets.all(5.0), decoration: BoxDecoration( borderRadius: BorderRadius.circular(20.0), gradient: const LinearGradient( colors: [ Color(0xFF546486), Color(0xFF394A68), ], begin: Alignment.topLeft, end: Alignment.bottomRight, ), ), child: Container( margin: const EdgeInsets.all(5.0), decoration: BoxDecoration( borderRadius: BorderRadius.circular(20.0), gradient: const LinearGradient( colors: [ Color(0xFF394A68), Color(0xFF546486), ], begin: Alignment.topLeft, end: Alignment.bottomRight, ), boxShadow: const [ BoxShadow(color: Color(0xFF394A68), blurRadius: 5.0), ], ), child: Center( child: Text( value, style: const TextStyle( color: Color(0XFFBCC6DF), fontSize: 30.0, ), ), ), ), ); } [/code] Это то, что я получил на данный момент, не стесняйтесь менять все, что хотите или нужно. Текущий результат [img]https://i.stack.imgur.com/wuwn5.png[/img]
Ожидаемый результат [img]https://i.stack.imgur.com/bb7T2.png[/img]