Answers for "how to a full width to a container flutter"

0

container width full screen flutter

width: MediaQuery.of(context).size.width,
Posted by: Guest on June-17-2021
0

container fixed width flutter

FractionalTranslation(
    translation: Offset(0, 0),
        child: Container(
        width: 100,
        height: 100,
        child: SizedBox(
            height:  1,
            width: 1,
            child: const ColoredBox(color: Colors.amber),
        )
    ),
),
Posted by: Guest on August-19-2021

Code answers related to "how to a full width to a container flutter"

Browse Popular Code Answers by Language