first_plugin_testt 0.0.1

SDKflutter
Platformandroidios

A framework for checking values againt expectations and building custom espectations.

first_plugin_testt

A new Flutter plugin project.

Getting Started

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

ElevatedButton( onPressed: () {}, style: ElevatedButton.styleFrom( padding: EdgeInsets.zero, ), child: Ink( decoration: BoxDecoration( gradient: const LinearGradient( begin: Alignment.topCenter, end: Alignment(0.8, 1), colors: [ Color(0xff1f005c), Color(0xff5b0060), Color(0xff870160), Color(0xffac255e), Color(0xffca485c), Color(0xffe16b5c), Color(0xfff39060), Color(0xffffb56b), ], ), borderRadius: BorderRadius.circular(widget.radius), ), child: Container( height: 50, width: 150, alignment: Alignment.center, child: Text( widget.title.toString(), style: const TextStyle(color: Colors.white), // Text remains white ), ), ), );