Row(
children: [
Gradienttextfield(
controller: name,
radius: 40,
height: 60,
width: 60,
colors: const [Colors.grey, Colors.black],
text: "ABC" ,
fontColor: Colors.white,
fontSize: 15,
fontWeight: FontWeight.normal,
),
Gradienttextfield(
controller: name,
radius: 40,
height: 60,
width: 60,
colors: const [Colors.green, Colors.yellow],
text: "DEF" ,
fontColor: Colors.white,
fontSize: 15,
fontWeight: FontWeight.normal,
),
Gradienttextfield(
controller: name,
radius: 0,
height: 60,
width: 60,
colors: const [Colors.grey, Colors.black],
text: "GHI" ,
fontColor: Colors.white,
fontSize: 15,
fontWeight: FontWeight.normal,
),
Gradienttextfield(
controller: name,
radius: 20,
height: 60,
width: 60,
colors: const [Colors.deepPurple, Colors.blue],
text: "JKL" ,
fontColor: Colors.white,
fontSize: 15,
fontWeight: FontWeight.normal,
),
],
)
|