Shivam Singh
Shivam Singh

Reputation: 117

Transparent container in flutter

I'm a beginner in flutter and trying to make a transparent container in Flutter. It should be 100% transparent with the background. I tried using Colors.transparent as color property of container but it's not what i want.

Upvotes: 0

Views: 5166

Answers (1)

Rutvik Gumasana
Rutvik Gumasana

Reputation: 1630

Try to use opacity widget. Add your container instead of MyTransparentWidget() in this example, that's it.

 Opacity(
            opacity: 0,
            child: Card(
              elevation: 5,
              child: <YOUR WIDGET>,
            ),
          ),

Upvotes: 5

Related Questions