Reputation: 117
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
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