Answers for "linear gradient fluttter"

0

flutter container gradient

decoration: BoxDecoration(
              gradient: LinearGradient(
            begin: Alignment.topRight,
            end: Alignment.bottomLeft,
            colors: [Colors.grey, Colors.white],
          )),
Posted by: Guest on October-25-2021

Browse Popular Code Answers by Language