Questions tagged [flutter-opacity]

A widget that makes its child partially transparent. It paints its child into an intermediate buffer and then blends the child back into the scene partially transparent.

4 questions
0
votes
2 answers

Flutter: How to override opacity value inside a child widget?

Is it possible to override the opacity value inside a child widget? I have a list of items and based on an inactive status I'm making them partially transparent. ListView.builder( itemBuilder:(c,i) { if(status) return MyCard(active:status); …
krishnakumarcn
  • 3,959
  • 6
  • 39
  • 69
0
votes
1 answer

Add Foggy Effect behind FAB in Flutter

How can i add this foggy effect behind the FAB ? I have tried achieving this using BottomAppBar but the BottomAppBar doesnt accept Transparent Color in LinearGradient I have also tried to reduce the Opacity of BottomAppBar Background but it doesnt…
0
votes
1 answer

How to cut through an Opacity Widget in flutter?

I want to remove opacity from the center of a container to make the picture below it to be visible. What I want: What I tried: Code I Tried: import 'package:flutter/material.dart'; import…
Vettiyanakan
  • 7,957
  • 6
  • 37
  • 55
-1
votes
4 answers

How to make background overlay?

I'm interested in how to make an overlay over the background of a layer of a certain color with a transparent part as in this layout. Maybe someone knows good ways to implement this, so I'll ask you to help make a similar background overlap. What…