My result –
What I expected –
I don’t have an idea how to fix this, there is my code
I did –
-
Set the background color of Scaffold to transparent
-
use the Container widget and add LinearGradient
Scaffold( backgroundColor: Colors.transparent, body: Container( height: MediaQuery.of(context).size.height, width: MediaQuery.of(context).size.width, decoration: BoxDecoration( gradient: LinearGradient( colors: [ Color.fromRGBO(31, 16, 80, 1), Color.fromRGBO(13, 4, 42, 1), Color.fromRGBO(42, 28, 81, 1), ], stops: [ 0.1, 0.4, 0.9, ], begin: Alignment.topCenter, end: Alignment.bottomCenter, ), ), child: SingleChildScrollView( child: Column( children: [ // Your content widgets go here ], ), ), ), );
2
Answers
Try this code
Output