SP Lee
SP Lee

Reputation: 13

Background Gradient Effect Flutter

How can I achieve this gradient background effect in Flutter?

This is what I am trying to achieve

I am working on this as part of a school project but I am relatively new to coding so I am really struggling. Please help.

Upvotes: 0

Views: 155

Answers (2)

Manuel Tapia
Manuel Tapia

Reputation: 169

return Container(
  decoration: BoxDecoration(
    gradient: LinearGradient(
      begin: Alignment.centerLeft,
      end: Alignment.centerRight,
      colors: [
        Color(0xff147EFF),
        Color(0xff6236BE)
      ]
    )
  )
);

Add your colors :)

Here more info -> LinearGradient

Upvotes: 0

Wissam Sbenaty
Wissam Sbenaty

Reputation: 153

return Container(
      decoration: BoxDecoration(
        gradient: [List of Your Colors]
      ),
    );

Upvotes: 1

Related Questions