You can adjust the gradient with the code below
const LinearGradient(
colors: [Colors.blue, Colors.black, Colors.black],
stops: [0.0, 0.5, 1.0], // Adjust stops to control the gradient spread
begin: Alignment.centerLeft, // Start from left
end: Alignment.centerRight, // End at right
),