Answers for "transparent background in flutter"

1

flutter container opacity

const Color(0xFF0E3311).withOpacity(0.5)
Posted by: Guest on April-25-2020
0

how to set opacity of background color in flutter

Opacity(
          opacity: 0.5,
          child: Container(
          color: Colors.red,
          width: 200,
          height: 200,
  ),
        ),
Posted by: Guest on November-07-2020

Code answers related to "transparent background in flutter"

Browse Popular Code Answers by Language