Search code examples
flutteruser-interfacegradient

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.


Solution

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